-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
698 lines (525 loc) · 25 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
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
<!DOCTYPE html>
<html lang="en">
<head>
<title>Visit Northeast</title>
<!-- font awesome cdn link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<link rel="stylesheet" href="https://unpkg.com/swiper@7/swiper-bundle.min.css" />
<link rel='stylesheet' href='https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css'>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap" rel="stylesheet">
<!-- custom css file link -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id="top"></div>
<!-- header section starts -->
<header class="header">
<a href="#" class="logo"> <i class="fas fa-hiking"></i> musafir. </a>
<nav class="navbar">
<div id="nav-close" class="fas fa-times"></div>
<a href="index.html">home</a>
<a href="adventure.html">Adventure</a>
<a href="map.html">map</a>
<a href="blogs.html">blogs</a>
<a href="events.html">Events</a>
<a href="products.html">NE Products</a>
<a href="camping.html">Equipments</a>
<a href="about.html">about us</a>
<a onclick="window.open('https://musafir-ai.streamlit.app/')" class="ai-btn"><img height="20px" src="images/ai.png"></a>
</nav>
<div class="icons">
<div id="menu-btn" class="fas fa-bars"></div>
<!--<a href="#" class="fas fa-shopping-cart"></a>-->
<div id="search-btn" class=""></div>
</div>
</header>
<!-- header section ends -->
<!-- search form -->
<div class="search-form">
<div id="close-search" class="fas fa-times"></div>
<form action="">
<input type="search" name="" placeholder="search here..." id="search-box">
<label for="search-box" class="fas fa-search"></label>
</form>
</div>
<!-- home section starts -->
<section class="home" id="home">
<div class="swiper home-slider">
<div class="swiper-wrapper">
<!-- (#ffffff00, #000000a0) -->
<div class="swiper-slide">
<div class="box second" style="background: linear-gradient(45deg, rgba(0, 0, 0, 0.615), rgba(255, 255, 0, 0)), url(/images/bihu.jpg) center/cover no-repeat;" ">
<div class=" content ">
<span style="color:white; ">#Visit</span>
<h3>North East</h3>
<p style="color:white; ">The North East (NER) region of India is made up of eight states: Arunachal Pradesh,
Assam, Manipur, Meghalaya, Mizoram, Nagaland, Sikkim, and Tripura. The region is known for its natural
beauty, cultural diversity, and religious significance.</p>
<a href="# " class="hbtn ">get started</a>
</div>
</div>
</div>
<div class="swiper-slide ">
<div class="box second "
style="background: linear-gradient(45deg, rgba(0, 0, 0, 0.615), rgba(255, 255, 0, 0)), url(images/2.jpg) no-repeat ; ">
<div class="content ">
<span style="color:white; ">Welcome to</span>
<h3>Paradise</h3>
<p style="color:white; "> The northeast region of India is known for its scenic natural beauty, salubrious
weather, rich biodiversity, rare wildlife, historical sites, distinct cultural and ethnic heritage, and
warm and welcoming people. The region has immense natural resources, accounting for around 34% of the
country's water resources and almost 40% of India's hydropower potential. Sikkim is India's first organic
state.</p>
<a href="# " class="hbtn ">get started</a>
</div>
</div>
</div>
<div class="swiper-slide ">
<div class="box second "
style="background: linear-gradient(#ffffff00, #000000a0), url(/images/extra/IMG_20230514_114245.jpg) center/cover no-repeat; ">
<div class="content ">
<span style="color: white; ">Explore the</span>
<h3>Land</h3>
<p style="color: white; ">every moment and every sight is infused with the essence of paradise, making it a
perfect escape for those looking to immerse themselves in the beauty and depth of India's northeast.</p>
<a href="# " class="hbtn ">get started</a>
</div>
</div>
</div>
<div class="swiper-slide ">
<div class="box second "
style="background: linear-gradient(45deg, rgba(0, 0, 0, 0.615), rgba(255, 255, 0, 0)), url(/images/extra/IMG_20230514_130224.jpg) center/cover no-repeat; ">
<div class="content ">
<span style="color: white; ">Wonder of</span>
<h3>Asia</h3>
<p style="color: white; ">The Northeast region of India, also known as the "Seven Sisters, " comprises the
states of Arunachal Pradesh, Assam, Manipur, Meghalaya, Mizoram, Nagaland, and Tripura, along with the
state of Sikkim.</p>
<a href="# " class="hbtn ">get started</a>
</div>
</div>
</div>
</div>
<div class="swiper-button-next "></div>
<div class="swiper-button-prev "></div>
</div>
</section>
<!-- home section ends -->
<!-- category/adventure section starts -->
<section class="category adventure " id="adventure ">
<h1 class="heading ">adventure Activities</h1>
<div class="box-container ">
<div class="box ">
<img src="images/paragliding.jpg " alt=" ">
<h3>Paragliding</h3>
<p>Paragliding In Arunachal Pradesh Offers A Unique Opportunity To Glide Over Verdant Valleys, Cascading
Waterfalls, And Snow-Capped Peaks....</p>
<a href="adventure.html#para " class="btn ">read more</a>
</div>
<div class="box ">
<img src="images/hiking.jpg " alt=" ">
<h3>hiking in Tawang</h3>
<p>Hiking In Tawang Offers A Captivating And Invigorating Experience Amidst The Stunning Landscapes Of Arunachal
Pradesh, India. Nestled In The Eastern Himalayas, Tawang Boasts Pristine Natural Beauty...</p>
<a href="adventure.html#heli " class="btn ">read more</a>
</div>
<div class="box ">
<img src="images/dongvalley.jpg " alt=" ">
<h3>Campng in Dong Valley</h3>
<p>Camping Is A Popular Way To Experience The Beauty Of Dong Valley, Arunachal Pradesh, India In A More
Adventurous Way....</p>
<a href="adventure.html#balloon " class="btn ">read more</a>
</div>
<div class="box ">
<img src="images/Dzukou-Valley-Trek.jpg " alt=" ">
<h3>Dzukou-Valley-Trek</h3>
<p>The Dzukou Valley Trek Is A Well-Known Trekking Route In Nagaland, India, That Takes Place In The Southern
Angami Region Of Northeast India...</p>
<a href="adventure.html#safa " class="btn ">read more</a>
</div>
</div>
</section>
<!-- category/adventure section ends -->
<!-- map section starts -->
<section class="map " id="map ">
<div class="image ">
<img src="/images/ne_map.webp " height="600px " class="center " alt=" ">
</div>
<div class="content ">
<h3>Explore Northeast</h3>
<p>North East India is a popular destination for adventure tourism, photography, and nature tourism. The region is
known for its scenic beauty, including rolling hills, lush green valleys, and vast stretches of tea gardens.
It's also home to many wildlife sanctuaries, including Kaziranga National Park, Manas National Park, and Nameri.
</p>
<a href="map.html " class="btn ">read more</a>
</div>
</section>
<!-- map section ends -->
<!-- blogs section starts -->
<section class="blogs " id="blogs ">
<h1 class="heading "> our daily posts </h1>
<div class="swiper blogs-slider ">
<div class="swiper-wrapper ">
<div class="swiper-slide slide ">
<img src="images/kaziranga.jpg " alt=" ">
<div class="icons ">
<a href="# "> <i class="fas fa-calendar "></i> 28th Apr, 2024 </a>
<a href="# "> <i class="fas fa-user "></i> by admin </a>
</div>
<h3>Kaziranga</h3>
<p>kaziranga National Park Famous For Its One-Horned Rhinoceros Is Located In Golaghat.........</p>
<a href="blogs.html#lotus " class="btn ">read more</a>
</div>
<div class="swiper-slide slide ">
<img src="images/bumla.jpg " alt=" ">
<div class="icons ">
<a href="# "> <i class="fas fa-calendar "></i> April 28th 2024</a>
<a href="# "> <i class="fas fa-user "></i> by admin </a>
</div>
<h3>Bumla pass</h3>
<p>The Bum La Pass Is A Border Pass Between China's Tsona County In Tibet And India's Tawang District In
Arunachal Pradesh....</p>
<a href="# " class="btn ">read more</a>
</div>
<div class="swiper-slide slide ">
<img src="images/Dzukou-Valley-Trek.jpg " alt=" ">
<div class="icons ">
<a href="# "> <i class="fas fa-calendar "></i> 25th Dec, 2022 </a>
<a href="# "> <i class="fas fa-user "></i> by admin </a>
</div>
<h3>Dzuko Valley</h3>
<p>The Dzüko Valley Also Known As Dzükou Valley Or Dziiko Valley, Is A Valley Located In Between Senapati
District Of Manipur And Kohima ....</p>
<a href="# " class="btn ">read more</a>
</div>
</div>
</div>
</section>
<!-- blogs section ends -->
<!-- event home page section starts -->
<section class="event ">
<h1 class="heading1 ">Upcoming Events</h1>
<div class="eventrow ">
<div class="example-2 card ">
<div class="wrapper "
style="background: linear-gradient(#ffffff00, #00000082), url(/images/bihu_side.jpg) center/cover no-repeat; ">
<div class="head ">
<div class="date ">
<span class="day ">15</span>
<span class="month ">April</span>
<span class="year ">2024</span>
</div>
<ul class="menu-content ">
<li>
<a href="# " class="fa fa-bookmark-o "></a>
</li>
<li><a href="# " class="fa fa-heart-o "><span>18</span></a></li>
<li><a href="# " class="fa fa-comment-o "><span>3</span></a></li>
</ul>
</div>
<div class="data ">
<div class="Econtent ">
<span class="author ">Assam</span>
<h1 class="title "><a href="# ">Bihu</a></h1>
<p class="text1 ">Each Bihu Coincides With An Idiosyncratic Phase In The Farming Calendar. The Bohag Bihu
Marks The New Year At The Advent Of Seeding Time, ...</p>
<a href="events.html#awurudu " class="Ebutton ">Read more</a>
</div>
</div>
</div>
</div>
<div class="example-2 card ">
<div class="wrapper "
style="background: linear-gradient(#ffffff00, #00000082), url(/images/losar.jpg) center/cover no-repeat; ">
<div class="head ">
<div class="date ">
<span class="day ">05</span>
<span class="month ">Dec</span>
<span class="year ">2022</span>
</div>
<ul class="menu-content ">
<li>
<a href="# " class="fa fa-bookmark-o "></a>
</li>
<li><a href="# " class="fa fa-heart-o "><span>18</span></a></li>
<li><a href="# " class="fa fa-comment-o "><span>3</span></a></li>
</ul>
</div>
<div class="data ">
<div class="Econtent ">
<span class="author ">Arunachal Pardesh</span>
<h1 class="title "><a href="# ">Losar Festival</a></h1>
<p class="text1 ">The Losar Festival, The Solung Festival, The Dree Festival, And The Chalo-Loku Festival
Are The Main Festivals Of Arunachal Pradesh....</p>
<a href="events.html#awurudu " class="Ebutton ">Read more</a>
</div>
</div>
</div>
</div>
<!-- -->
<div class="example-2 card ">
<div class="wrapper "
style="background: linear-gradient(#ffffff00, #00000082), url(/images/pawl_kut.jpg) center/cover no-repeat; ">
<div class="head ">
<div class="date ">
<span class="day ">05</span>
<span class="month ">january</span>
<span class="year ">2024</span>
</div>
<ul class="menu-content ">
<li>
<a href="# " class="fa fa-bookmark-o "></a>
</li>
<li><a href="# " class="fa fa-heart-o "><span>18</span></a></li>
<li><a href="# " class="fa fa-comment-o "><span>3</span></a></li>
</ul>
</div>
<div class="data ">
<div class="Econtent ">
<span class="author ">Mizoram</span>
<h1 class="title "><a href="# ">Pawl Kut</a></h1>
<p class="text1 ">Pawl Kut is the greatest of all the festivals celebrated in the state of Mizoram. Once
all the harvests are over... </p>
<a href="events.html#asala " class="Ebutton ">Read more</a>
</div>
</div>
</div>
</div>
<div class="example-2 card ">
<div class="wrapper " style="background: url(/images/hornbuill.jpg) center/cover no-repeat; ">
<div class="head ">
<div class="date ">
<span class="day ">1-10</span>
<span class="month ">Dec</span>
<span class="year ">2024</span>
</div>
<ul class="menu-content ">
<li>
<a href="# " class="fa fa-bookmark-o "></a>
</li>
<li><a href="# " class="fa fa-heart-o "><span>18</span></a></li>
<li><a href="# " class="fa fa-comment-o "><span>3</span></a></li>
</ul>
</div>
<div class="data ">
<div class="Econtent ">
<span class="author ">Nagaland</span>
<h1 class="title "><a href="# ">Hornbill Festival</a></h1>
<p class="text1 ">The Hornbill Festival, Which Is Called The 'Festivals Of Festivals', Is A 10-Day Annual
Cultural Fest Of Nagaland That Showcases...</p>
<a href="events.html#vesak " class="Ebutton ">Read more</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- event home page section ends -->
<!-- Tradional Products section start -->
<section class="products ">
<h1 class="heading1 ">Tradional Products</h1>
<div class="wrapper ">
<div class="item-bg "></div>
<div class="news-slider ">
<div class="news-slider__wrp swiper-wrapper ">
<div class="news-slider__item swiper-slide ">
<a href="products.html#mask " class="news__item ">
<div class="news__title ">
Northeast Spices
</div>
<p class="news__txt ">
The North East region of India is called as a hub of major spices like large cardamom, ginger, turmeric,
black pepper, chilli, bay leaf, etc...............
</p>
<div class="news__img ">
<img src="images/spices.jpg " alt=" ">
</div>
</a>
</div>
<div class="news-slider__item swiper-slide ">
<a href="products.html#art " class="news__item ">
<div class="news__title ">
Fermented Food
</div>
<p class="news__txt ">
Northeast India has many restaurants that serve fermented foods, including North Eastern Indian
restaurants, Assamese restaurants, and Chinese restaurants
</p>
<div class="news__img ">
<img src="/images/fermented.webp " alt=" ">
</div>
</a>
</div>
</div>
<div class="news-slider__ctr ">
<div class="news-slider__arrows ">
<button class="news-slider__arrow news-slider-prev ">
<span class="icon-font ">
<svg class="picon icon-arrow-left ">
<use xlink:href="#icon-arrow-left "></use>
</svg>
</span>
</button>
<button class="news-slider__arrow news-slider-next ">
<span class="icon-font ">
<svg class="picon icon-arrow-right ">
<use xlink:href="#icon-arrow-right "></use>
</svg>
</span>
</button>
</div>
<div class="news-slider__pagination "></div>
</div>
</div>
</div>
<svg hidden="hidden ">
<defs>
<symbol id="icon-arrow-left " viewBox="0 0 32 32 ">
<title>arrow-left</title>
<path
d="M0.704 17.696l9.856 9.856c0.896 0.896 2.432 0.896 3.328 0s0.896-2.432 0-3.328l-5.792-5.856h21.568c1.312 0 2.368-1.056 2.368-2.368s-1.056-2.368-2.368-2.368h-21.568l5.824-5.824c0.896-0.896 0.896-2.432 0-3.328-0.48-0.48-1.088-0.704-1.696-0.704s-1.216
0.224-1.696 0.704l-9.824 9.824c-0.448 0.448-0.704 1.056-0.704 1.696s0.224 1.248 0.704 1.696z ">
</path>
</symbol>
<symbol id="icon-arrow-right " viewBox="0 0 32 32 ">
<title>arrow-right</title>
<path
d="M31.296 14.336l-9.888-9.888c-0.896-0.896-2.432-0.896-3.328 0s-0.896 2.432 0 3.328l5.824 5.856h-21.536c-1.312 0-2.368 1.056-2.368 2.368s1.056 2.368 2.368 2.368h21.568l-5.856 5.824c-0.896 0.896-0.896 2.432 0 3.328 0.48 0.48 1.088 0.704
1.696 0.704s1.216-0.224 1.696-0.704l9.824-9.824c0.448-0.448 0.704-1.056 0.704-1.696s-0.224-1.248-0.704-1.664z ">
</path>
</symbol>
</defs>
</svg>
<!-- partial -->
</section>
<!-- Tradional Products section end -->
<!-- reviews section starts -->
<section class="reviews " id="reviews ">
<h1 class="heading ">Tourist's reviews</h1>
<div class="swiper review-slider ">
<div class="swiper-wrapper ">
<div class="swiper-slide slide ">
<p class="text ">"What a wonderful resource for exploring North East India! Your website is a treasure trove of insightful articles and travel tips. It 's helped me plan my upcoming trip with ease."</p>
<div class="user">
<img src="images/pic-1.png" alt="">
<div class="info">
<h3>David Thomsan</h3>
<span>United Kingdom</span>
</div>
</div>
</div>
<div class="swiper-slide slide">
<p class="text">"I love the unique perspectives and hidden gems your website highlights about North East
India. It's evident you 're passionate about showcasing this region's beauty and culture. "</p>
<div class="user ">
<img src="images/pic-2.png " alt=" ">
<div class="info ">
<h3>Simona Alixa</h3>
<span>New Zealand</span>
</div>
</div>
</div>
<div class="swiper-slide slide ">
<p class="text ">"This website is a gem for anyone planning to visit North East India. The detailed guides and beautiful imagery truly capture the essence of this enchanting part of the country. "</p>
<div class="user ">
<img src="images/pic-3.png " alt=" ">
<div class="info ">
<h3>Petra Marick</h3>
<span>London</span>
</div>
</div>
</div>
<div class="swiper-slide slide ">
<p class="text ">Kudos to your team for curating such valuable content. The itineraries provided are
comprehensive and have made my trip planning stress-free. Can't wait to explore!"</p>
<div class="user">
<img src="images/pic-4.png" alt="">
<div class="info">
<h3>Chloe Loues</h3>
<span>Korea</span>
</div>
</div>
</div>
<div class="swiper-slide slide">
<p class="text">"I stumbled upon your website while researching North East India, and I'm so glad I did! The recommendations and local insights have added a personal touch to my travel plans."</p>
<div class="user">
<img src="images/pic-5.png" alt="">
<div class="info">
<h3>john deo</h3>
<span>USA</span>
</div>
</div>
</div>
<div class="swiper-slide slide">
<p class="text">"Highly recommend this website to anyone interested in North East India. It's evident that the team behind it has a deep understanding and appreciation for the region. Keep up the fantastic work!"</p>
<div class="user">
<img src="images/pic-6.png" alt="">
<div class="info">
<h3>Jing lee</h3>
<span>China</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- reviews section ends -->
<!-- newsletter section -->
<!-- footer section starts -->
<section class="footer">
<div class="box-container">
<div class="box">
<h3>quick links</h3>
<a href="index.html">home</a>
<a href="adventure.html">adventure</a>
<a href="map.html">map</a>
<a href="blogs.html">blog</a>
<a href="events.html">events</a>
<a href="products.html">products</a>
<a href="about.php">about</a>
</div>
<div class="box">
<h3>extra links</h3>
<a href="#">my account</a>
<a href="#">my order</a>
<a href="#">my wishlist</a>
<a href="#">ask questions</a>
<a href="#">terms of use</a>
<a href="#">privacy policy</a>
</div>
<div class="box">
<h3>contact info</h3>
<a href="#"> <i class="fas fa-phone"></i> +91 2322234487 </a>
<a href="#"> <i class="fas fa-phone"></i> +91 2322234487 </a>
<a href="#"> <i class="fas fa-envelope"></i> dbu.university.ac.in</a>
<a href="#"> <i class="fas fa-map"></i> Assam</a>
</div>
<div class="box">
<h3>follow us</h3>
<a href="" target="_blank"> <i class="fab fa-facebook-f"></i> facebook </a>
<a href="" target="_blank"> <i class="fab fa-twitter"></i> twitter </a>
<a href="" target="_blank"> <i class="fab fa-instagram"></i> instagram </a>
<a href="" target="_blank"> <i class="fab fa-linkedin"></i> linkedin </a>
<a href="" target="_blank"><i class="fa fa-pinterest"></i> pinterest </a>
</div>
</div>
<div class="credit">Made by Team<span> ADBU</span> <br> Copyright ©️ 2024 - all rights reserved!</div>
</section>
<!-- footer section ends -->
<!-- ------scroller to top -->
<a href="#top" class="to-top">
<i class="fas fa-chevron-up"></i>
</a>
<!-- product section links -->
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/Swiper/4.3.5/js/swiper.min.js'></script>
<script src="https://unpkg.com/swiper@7/swiper-bundle.min.js"></script>
<!-- custom js file link -->
<script src="js/script.js"></script>
<!-- <div class="scroll-container">
<a href="#top">To Top</a>
</div> -->
</body>
</html>