-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
424 lines (376 loc) · 19.7 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" type="image/png" href="assets/img/favicon.ico">
<link rel="apple-touch-icon" sizes="76x76" href="assets/img/apple-icon.png">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>The Example page of KUKUN upcomming project</title>
<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' name='viewport' />
<meta name="viewport" content="width=device-width" />
<link href="assets/css/bootstrap.min.css" rel="stylesheet" />
<link href="assets/css/paper-kit.css?v=2.0.1" rel="stylesheet"/>
<link href="assets/css/demo.css" rel="stylesheet" />
<!-- Fonts and icons -->
<link href='http://fonts.googleapis.com/css?family=Montserrat:400,300,700' rel='stylesheet' type='text/css'>
<link href="http://maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css" rel="stylesheet">
<link href="assets/css/nucleo-icons.css" rel="stylesheet">
</head>
<body>
<nav class="navbar navbar-toggleable-md fixed-top navbar-transparent" color-on-scroll="150">
<div class="container">
<div class="navbar-translate">
<button class="navbar-toggler navbar-toggler-right navbar-burger" type="button" data-toggle="collapse" data-target="#navbarToggler" aria-controls="navbarTogglerDemo02" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-bar"></span>
<span class="navbar-toggler-bar"></span>
<span class="navbar-toggler-bar"></span>
</button>
<a class="navbar-brand" href="index.html">Brand Name</a>
</div>
<div class="collapse navbar-collapse" id="navbarToggler">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a href="aboutus.html" target="_blank" class="nav-link"><i class="nc-icon nc-book-bookmark"></i> About us</a>
</li>
<li class="nav-item">
<a href="gallery.html" target="_blank" class="nav-link"><i class="nc-icon nc-book-bookmark"></i> Gallery</a>
</li>
<li class="nav-item">
<a href="contactus.html" target="_blank" class="nav-link"><i class="nc-icon nc-book-bookmark"></i> Contact us</a>
</li>
<!-- Hine one option--
<li class="nav-item">
<a href="documentation/tutorial-components.html" target="_blank" class="nav-link"><i class="nc-icon nc-book-bookmark"></i> About us</a>
</li>
--- Ended -->
<li class="nav-item">
<a href="appointment.html" target="_blank" class="btn btn-danger btn-round">Appointment</a>
</li>
<!-- Hide Social Networks ---
<li class="nav-item">
<a class="nav-link" rel="tooltip" title="Follow us on Twitter" data-placement="bottom" href="#Facebook" target="_blank">
<i class="fa fa-twitter"></i>
<p class="hidden-lg-up">Twitter</p>
</a>
</li>
<li class="nav-item">
<a class="nav-link" rel="tooltip" title="Like us on Facebook" data-placement="bottom" href="#Facebook" target="_blank">
<i class="fa fa-facebook-square"></i>
<p class="hidden-lg-up">Facebook</p>
</a>
</li>
<li class="nav-item">
<a class="nav-link" rel="tooltip" title="Follow us on Instagram" data-placement="bottom" href="#insta" target="_blank">
<i class="fa fa-instagram"></i>
<p class="hidden-lg-up">Instagram</p>
</a>
</li>
<li class="nav-item">
<a class="nav-link" rel="tooltip" title="Star on GitHub" data-placement="bottom" href="#git" target="_blank">
<i class="fa fa-github"></i>
<p class="hidden-lg-up">GitHub</p>
</a>
</li>
--- Ended -->
</ul>
</div>
</div>
</nav>
<div class="page-header" data-parallax="true" style="background-image: url('assets/img/daniel-olahh.jpg');">
<div class="filter"></div>
<div class="container">
<div class="motto text-center">
<h1>Example page</h1>
<h3>Short describe about your page here.</h3>
<br />
<!-- temporary hide the detail button ---
<a href="#Details" class="btn btn-outline-neutral btn-round"><i class="fa fa-play"></i>Details</a>
<button type="button" class="btn btn-outline-neutral btn-round">Download</button>
<!-- additional Support --- ended-- here -->
</div>
</div>
</div>
<div class="main">
<div class="section text-center">
<div class="container">
<div class="row">
<div class="col-md-8 offset-md-2">
<h2 class="title">Let's talk product</h2>
<h5 class="description">This is the paragraph where you can write more details about your product. Keep you user engaged by providing meaningful information. Remember that by this time, the user is curious, otherwise he wouldn't scroll to get here. Add a button if you want the user to see more.</h5>
<br>
<!-- Hide additional show buttin --
<a href="#paper-kit" class="btn btn-danger btn-round">See Details</a>
--- ended with is -->
</div>
</div>
<br/><br/>
<!-- The Line segment ended with blank space
<div class="row">
<div class="col-md-3">
<div class="info">
<div class="icon icon-danger">
<i class="nc-icon nc-album-2"></i>
</div>
<div class="description">
<h4 class="info-title">Beautiful Gallery</h4>
<p class="description">Spend your time generating new ideas. You don't have to think of implementing.</p>
<a href="#pkp" class="btn btn-link btn-danger">See more</a>
</div>
</div>
</div>
<div class="col-md-3">
<div class="info">
<div class="icon icon-danger">
<i class="nc-icon nc-bulb-63"></i>
</div>
<div class="description">
<h4 class="info-title">New Ideas</h4>
<p>Larger, yet dramatically thinner. More powerful, but remarkably power efficient.</p>
<a href="#pkp" class="btn btn-link btn-danger">See more</a>
</div>
</div>
</div>
<div class="col-md-3">
<div class="info">
<div class="icon icon-danger">
<i class="nc-icon nc-chart-bar-32"></i>
</div>
<div class="description">
<h4 class="info-title">Statistics</h4>
<p>Choose from a veriety of many colors resembling sugar paper pastels.</p>
<a href="#pkp" class="btn btn-link btn-danger">See more</a>
</div>
</div>
</div>
<div class="col-md-3">
<div class="info">
<div class="icon icon-danger">
<i class="nc-icon nc-sun-fog-29"></i>
</div>
<div class="description">
<h4 class="info-title">Delightful design</h4>
<p>Find unique and handmade delightful designs related items directly from our sellers.</p>
<a href="#pkp" class="btn btn-link btn-danger">See more</a>
</div>
</div>
</div>
</div>
</div>
</div>
The Line segment ended with blank space-->
<!-- the file is intigrated By Kukun -->
<div class="section section-demo">
<div class="container">
<br>
<div class="row">
<div class="col-md-5">
<h4 class="header-text">Paragraph 1 </h4>
<br />
<p align="left" >
This is the paragraph where you can write more details about your product. Keep you user engaged by providing meaningful information. Remember that by this time, the user is curious, otherwise he wouldn't scroll to get here. Add a button if you want the user to see more.
</p>
<p align="left" >
PSD Custom focuses on conveying the attention of your users to the important parts of the page and the actions. While keeping a light feel, the colors give the page an extra push.
</p>
</div>
<div class="col-md-6 col-md-offset-1">
<div class="demo-image">
<img height="100%" width="100%" src="assets/img/ilya-yakover.jpg" alt="">
</div>
</div>
</div>
<br>
<div class="row">
<div class="col-md-6">
<div class="demo-image">
<img height="100%" width="100%" src="assets/img/ilya-yakover.jpg" alt="">
</div>
</div>
<div class="col-md-5 col-md-offset-1">
<h4 class="header-text">Paragraph 2</h4>
<br />
<p align="left">
This is the paragraph where you can write more details about your product. Keep you user engaged by providing meaningful information. Remember that by this time, the user is curious, otherwise he wouldn't scroll to get here. Add a button if you want the user to see more.
</p>
<p align="left">
PSD Custom focuses on conveying the attention of your users to the important parts of the page and the actions. While keeping a light feel, the colors give the page an extra push.
</p>
</div>
</div>
<br>
<div class="row">
<div class="col-md-5">
<h4 class="header-text">Paragraph 3</h4>
<br />
<p align="left" >
This is the paragraph where you can write more details about your product. Keep you user engaged by providing meaningful information. Remember that by this time, the user is curious, otherwise he wouldn't scroll to get here. Add a button if you want the user to see more.
</p>
<p align="left" >
PSD Custom focuses on conveying the attention of your users to the important parts of the page and the actions. While keeping a light feel, the colors give the page an extra push.
</p>
</div>
<div class="col-md-6 col-md-offset-1">
<div class="demo-image">
<img height="100%" width="100%" src="assets/img/ilya-yakover.jpg" alt="">
</div>
</div>
</div>
</div>
</div>
<!-- ended it up -->
<!-- close about us segment---
<div class="section section-dark text-center">
<div class="container">
<h2 class="title">Let's talk about us</h2>
<div class="row">
<div class="col-md-4">
<div class="card card-profile card-plain">
<div class="card-avatar">
<a href="#avatar"><img src="../assets/img/faces/clem-onojeghuo-3.jpg" alt="..."></a>
</div>
<div class="card-block">
<a href="#paper-kit">
<div class="author">
<h4 class="card-title">Henry Ford</h4>
<h6 class="card-category">Product Manager</h6>
</div>
</a>
<p class="card-description text-center">
Teamwork is so important that it is virtually impossible for you to reach the heights of your capabilities or make the money that you want without becoming very good at it.
</p>
</div>
<div class="card-footer text-center">
<a href="#pablo" class="btn btn-link btn-just-icon btn-neutral"><i class="fa fa-twitter"></i></a>
<a href="#pablo" class="btn btn-link btn-just-icon btn-neutral"><i class="fa fa-google-plus"></i></a>
<a href="#pablo" class="btn btn-link btn-just-icon btn-neutral"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card card-profile card-plain">
<div class="card-avatar">
<a href="#avatar"><img src="../assets/img/faces/joe-gardner-2.jpg" alt="..."></a>
</div>
<div class="card-block">
<a href="#paper-kit">
<div class="author">
<h4 class="card-title">Sophie West</h4>
<h6 class="card-category">Designer</h6>
</div>
</a>
<p class="card-description text-center">
A group becomes a team when each member is sure enough of himself and his contribution to praise the skill of the others. No one can whistle a symphony. It takes an orchestra to play it.
</p>
</div>
<div class="card-footer text-center">
<a href="#pablo" class="btn btn-link btn-just-icon btn-neutral"><i class="fa fa-twitter"></i></a>
<a href="#pablo" class="btn btn-link btn-just-icon btn-neutral"><i class="fa fa-google-plus"></i></a>
<a href="#pablo" class="btn btn-link btn-just-icon btn-neutral"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card card-profile card-plain">
<div class="card-avatar">
<a href="#avatar"><img src="../assets/img/faces/erik-lucatero-2.jpg" alt="..."></a>
</div>
<div class="card-block">
<a href="#paper-kit">
<div class="author">
<h4 class="card-title">Robert Orben</h4>
<h6 class="card-category">Developer</h6>
</div>
</a>
<p class="card-description text-center">
The strength of the team is each individual member. The strength of each member is the team. If you can laugh together, you can work together, silence isn’t golden, it’s deadly.
</p>
</div>
<div class="card-footer text-center">
<a href="#pablo" class="btn btn-link btn-just-icon btn-neutral"><i class="fa fa-twitter"></i></a>
<a href="#pablo" class="btn btn-link btn-just-icon btn-neutral"><i class="fa fa-google-plus"></i></a>
<a href="#pablo" class="btn btn-link btn-just-icon btn-neutral"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
--->
<!-- Hide Contact US --
<div class="section landing-section">
<div class="container">
<div class="row">
<div class="col-md-8 offset-md-2">
<h2 class="text-center">Keep in touch?</h2>
<form class="contact-form">
<div class="row">
<div class="col-md-6">
<label>Name</label>
<div class="input-group">
<span class="input-group-addon">
<i class="nc-icon nc-single-02"></i>
</span>
<input type="text" class="form-control" placeholder="Name">
</div>
</div>
<div class="col-md-6">
<label>Email</label>
<div class="input-group">
<span class="input-group-addon">
<i class="nc-icon nc-email-85"></i>
</span>
<input type="text" class="form-control" placeholder="Email">
</div>
</div>
</div>
<label>Message</label>
<textarea class="form-control" rows="4" placeholder="Tell us your thoughts and feelings..."></textarea>
<div class="row">
<div class="col-md-4 offset-md-4">
<button class="btn btn-danger btn-lg btn-fill">Send Message</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
---Ended It-------->
</div>
<br />
<br />
<hr >
<footer class="footer section-dark">
<div class="container">
<div class="row">
<nav class="footer-nav">
<ul>
<li><a href="aboutus.html">About us</a></li>
<li><a href="appointment.html">Appointment</a></li>
<li><a href="contactus.html">Contact</a></li>
</ul>
</nav>
<div class="credits ml-auto">
<span class="copyright">
© Kukun Mishra, All rights reserved.
</span>
</div>
</div>
</div>
</footer>
</body>
<!-- kukun added -->
<script src="assets/js/jquery-3.2.1.js" type="text/javascript"></script>
<script src="assets/js/jquery-ui-1.12.1.custom.min.js" type="text/javascript"></script>
<script src="assets/js/tether.min.js" type="text/javascript"></script>
<script src="assets/js/bootstrap.min.js" type="text/javascript"></script>
<!-- Switches -->
<script src="assets/js/bootstrap-switch.min.js"></script>
<!-- Plugins for Slider -->
<script src="assets/js/nouislider.js"></script>
<!-- Plugins for DateTimePicker -->
<script src="assets/js/moment.min.js"></script>
<script src="assets/js/bootstrap-datetimepicker.min.js"></script>
<!-- Paper Kit Initialization and functons -->
<script src="assets/js/paper-kit.js?v=2.0.1"></script>
</html>