forked from 11-DEEPAK-KUMAR-11/HINDUSTAN-TIMES
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lifestyle.html
985 lines (897 loc) · 45.8 KB
/
lifestyle.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
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Lifestyle</title>
<link rel="stylesheet" href="common.css">
<link rel="stylesheet" href="latest.css">
<link rel="stylesheet" href="navbar.css">
<link rel="stylesheet" href="footer.css">
</head>
<body>
<div id="mySidenav" class="sidenav">
<div class="sidenav-heaer">
<div class="navlogo"></div>
<div class="sideNavWather">
<div class="weather">
New Delhi
<span class="cTemp">32</span>
<sup>o</sup>
C
</div>
<div class="date">Friday, May 06, 2022</div>
</div>
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
</div>
<div class="scrollMenu">
<div class="nav-sec">
<ul>
<li class="active">
<a href="">
Home
</a>
</li>
<li class="active">
<a href="">
India News
</a>
</li>
<li class="collapse">
<div>
<a href="">Entertainment</a>
<span></span>
</div>
</li>
<li class="collapse">
<div>
<a href="">IPL 2022</a>
<span></span>
</div>
</li>
<li class="collapse">
<div>
<a href="">Elections</a>
<span></span>
</div>
</li>
<li class="collapse">
<div>
<a href="">Cities</a>
<span></span>
</div>
</li>
<li class="active">
<a href="">
World News
</a>
</li>
<li class="collapse">
<div>
<a href="">Lifestyle</a>
<span></span>
</div>
</li>
<li class="active">
<a href="">
Trending
</a>
</li>
<li class="collapse">
<div>
<a href="">Education</a>
<span></span>
</div>
</li>
<li class="collapse">
<div>
<a href="">Astrology</a>
<span></span>
</div>
</li>
<li class="active">
<a href="">
Opinion
</a>
</li>
<li class="active">
<a href="">
Analysis
</a>
</li>
<li class="collapse">
<div>
<a href="">Videos</a>
<span></span>
</div>
</li>
<li class="collapse">
<div>
<a href="">Photos</a>
<span></span>
</div>
</li>
<li class="collapse">
<div>
<a href="">Sports</a>
<span></span>
</div>
</li>
<li class="active">
<a href="">
Web Stories
</a>
</li>
<li class="active">
<a href="">
Business
</a>
</li>
<li class="active">
<a href="">
Science
</a>
</li>
<li class="collapse">
<div>
<a href="">HT Insight</a>
<span></span>
</div>
</li>
<li class="active">
<a href="">
CricHT Fantasy
</a>
</li>
<li class="collapse">
<div>
<a href="">Games</a>
<span></span>
</div>
</li>
<li class="active">
<a href="">
Quiz
</a>
</li>
<li class="active">
<a href="">
Podcasts
</a>
</li>
<li class="active">
<a href="">
Audio
</a>
</li>
<li class="active">
<a href="">
HT Tech
</a>
</li>
<li class="active">
<a href="">
HT Bangla
</a>
</li>
<li class="active">
<a href="">
HT School
</a>
</li>
<li class="active">
<a href="">
HT Brand Stories
</a>
</li>
<li class="active">
<a href="">
HT Friday Finance
</a>
</li>
<li class="active">
<a href="">
HT Shop
</a>
</li>
</ul>
<ul class="nav-expanded">
<li class="menuhead"><p>Explore Hindustan Times</p></li>
<li class="active">
<a href="">
HT Newsletters
</a>
</li>
<li class="active">
<a href="">
Weather Today
</a>
</li>
<li class="active">
<a href="">
About Us
</a>
</li>
<li class="active">
<a href="">
Contact Us
</a>
</li>
<li class="active">
<a href="">
Privacy Policy
</a>
</li>
<li class="active">
<a href="">
Terms of Use
</a>
</li>
<li class="active">
<a href="">
Subscription - Terms of Use
</a>
</li>
<li class="active">
<a href="">
Disclaimer
</a>
</li>
<li class="active">
<a href="">
Print Ad Rates
</a>
</li>
<li class="active">
<a href="">
Sitemap
</a>
</li>
<li class="active">
<a href="">
RSS Feeds
</a>
</li>
</ul>
<div class="nav-footer">
Copyright © HT Digital Streams Ltd. All rights reserved.
</div>
</div>
<div class="footerLogin logedIn">
<div class="fSignOut">
<a href="">Sign in</a>
</div>
<div class="shareArticle">
<div class="shareIcons">
<a class="fb" href=""></a>
<a class="tw" href=""></a>
<a class="ln" href=""></a>
</div>
</div>
</div>
</div>
</div>
<header id="header">
<div class="container">
<div>
<div class="exploreSearch">
<div class="btnExplore">
<span onclick="openNav()" class="navIco"></span>
<strong>Explore</strong>
</div>
<div class="searchLink">
<a href="">Search</a>
</div>
</div>
<div class="date-weather">
<div class="hDate">
Thursday, May 05, 2022
</div>
<div class="hWeather">
New Delhi
<span class="cTemp">32</span>
<sup>o</sup>
C
</div>
</div>
</div>
<div class="logo">
<h1>
<a href="">
<img src="https://www.hindustantimes.com/res/images/ht-logo.svg" alt="">
</a>
</h1>
</div>
<div class="rgtLinks">
<div class="links">
<div class="gamezop">
<a href="">Games</a>
</div>
<div class="epaper">
<a id="papere" style="cursor: pointer;">E-Paper</a>
</div>
<a href="signup.html" style="text-decoration: none;color: white;margin-left: 5px;margin-top: 1px;">
<h3 id="signuser">Sign in</h3>
</a>
<div id="out" class="signin">
<div class="login">
<div class="sign-in">
Sign-out
</div>
</div>
</div>
</div>
<div id="sub" class="hdrSubscribe">
<div>
<span id="trialdays" class="headSpanTxt">Start 15 Days Free Trial</span>
</div>
<div class="subcBtn">
<a id="btnsub" href="subscribe.html">Subscribe</a>
</div>
</div>
</div>
</div>
</header>
<div id="container">
<div id="box1">
<div><a href="home.html"><h4>Home</h4></a></div>
<div><a href="latest.html"><h4>Latest</h4></a></div>
<div><a href="india.html"><h4>India</h4></a></div>
<div><a href="world.html"><h4>World</h4></a></div>
<div><a href="cities.html"><h4>Cities</h4></a></div>
<div><a href="entertainment.html"><h4>Entertainment</h4></a></div>
<div><a href="cricket.html"><h4>Cricket</h4></a></div>
<div><a href="lifestyle.html"><h4>Lifestyle</h4></a></div>
<div><a href=""><h4>Astrology</h4></a></div>
<div><a href="editorial.html"><h4>Editorials</h4></a></div>
<div><a href="foryou.html"><h4>For you</h4></a></div>
<div><a href="saved.html"><h4>Saved</h4></a></div>
</div>
</div>
</div>
</div>
<div id="cont">
<div id="first">
<h3> <span>[</span> <span id="thelinesone">TOP NEWS </span> <span>]</span></h3>
<h4 id="latestnews_section"><span id="thelinesone">LIFESTYLE </span></h4>
<h4>Think 8 hours of sleep is<br> best? Think again!<br></h4>
<p>Published on May 09,<br>12:46 PM IST</p>
<hr>
<h4 id="latestnews_section"><span id="thelinesone">LIFESTYLE </span></h4>
<h4>Easy tips to beat the heat and prevent dehydration in summere<br></h4>
<p>Published on May 09,<br>12:51 PM IST</p>
<hr>
<h4 id="latestnews_section"><span id="thelinesone">WEB-SERIES</span></h4>
<h4>Star Trek Strange New Worlds Review: A harmless yet forgettable series<br></h4>
<p>Published on May 09,<br>12:52 PM IST</p>
<hr>
<h3> <a href="https://www.hindustantimes.com/lifestyle">View all ></a> </h3>
<br>
<div id="firstOne">
<h3> <span>[</span> TRENDING TOPICS<span>]</span> </h3>
<h4 id="latestnews_section"><span id="thelinesone">HEALTH</span></h4>
<h4 id="recommended_news">Are Ayurvedic medicines safe? Expert on worrying side effects of popular herbs<br></h4>
<p>Published on May 09,<br>12:46 PM IST</p>
<hr>
<h4 id="latestnews_section"><span id="thelinesone">EDUCATION</span></h4>
<h4 id="recommended_news">MSC Bank Recruitment 2022: 195 vacancies of on offer, check notification here</h4>
<p>Published on May 09,<br>06:25 PM IST</p>
<hr>
<h4 id="latestnews_section"><span id="thelinesone">HOLLYWOOD</span></h4>
<h4 id="recommended_news">'Doctor Strange in the <br> Multiverse of Madness first <br> reactions are in: Critics <br> praise 'magical moments to <br> remember forever'</h4>
<p>Updated on May 09,<br>11:03 PM IST</p>
<hr>
<h4 id="latestnews_section"><span id="thelinesone">BOLLYWOOD</span></h4>
<h4 id="recommended_news">Salman Khan binged on mom's biryani on Eid, she cooked for guests at party as well, reveals Aayush Sharma</h4>
<p>Published on May 09,<br>12:30 PM IST</p>
<hr>
<h4 id="latestnews_section"><span id="thelinesone">TV</span></h4>
<h4 id="recommended_news">'Why would they...': Singer Sonu Nigam on Tamilians speaking Hindi</h4>
<p>Published on May 09,<br>12:30 PM IST</p>
<hr>
<h4 id="latestnews_section"><span id="thelinesone">SPORTS</span></h4>
<h4 id="recommended_news">Taekwondo star Aman Kadyan: Success isn’t an overnight process</h4>
<p>Published on May 09,<br>12:30 PM IST</p>
<hr>
<h4 id="latestnews_section"><span id="thelinesone">CRICKET</span></h4>
<h4 id="recommended_news">'He has played 9-10 IPL <br> games. Hasn't done <br> anything': Gavaskar says <br> India batter is suffering from <br> '2nd season syndrome'</h4>
<p>Updated on May 09,<br>07:23 PM IST</p>
<hr>
<h3> <a href="https://www.hindustantimes.com/don-t-miss">View all ></a> </h3>
<br>
</div>
</div>
<div id="second">
<h2> <span>[</span> LIFESTYLE <span>]</span> </h2>
<div id="second_one">
<h3> <a href="https://www.hindustantimes.com/lifestyle">LIFESTYLE</a></h3>
<h2>Think 8 hours of sleep is best? Think again!<br></h2>
<img src="https://images.hindustantimes.com/img/2022/05/06/550x309/sleep_1651829663776_1651829691538.jpg" alt="">
<p>Published on May 09,12:46 PM IST
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-share" viewBox="0 0 16 16">
<path d="M13.5 1a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3zM11 2.5a2.5 2.5 0 1 1 .603 1.628l-6.718 3.12a2.499 2.499 0 0 1 0 1.504l6.718 3.12a2.5 2.5 0 1 1-.488.876l-6.718-3.12a2.5 2.5 0 1 1 0-3.256l6.718-3.12A2.5 2.5 0 0 1 11 2.5zm-8.5 4a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3zm11 5.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3z"/>
</svg> </p>
</div>
<br>
<div id="second_two">
<div id="divinsidediv">
<h3> <a href="https://www.hindustantimes.com/lifestyle">FESTIVAL</a></h3>
<h4>Mother's Day quotes by famous poets, authors from Edgar Allan Poe to JK Rowling</h4>
<p>Published on May 09, 2022 <br> 11:11 AM IST
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-share" viewBox="0 0 16 16">
<path d="M13.5 1a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3zM11 2.5a2.5 2.5 0 1 1 .603 1.628l-6.718 3.12a2.499 2.499 0 0 1 0 1.504l6.718 3.12a2.5 2.5 0 1 1-.488.876l-6.718-3.12a2.5 2.5 0 1 1 0-3.256l6.718-3.12A2.5 2.5 0 0 1 11 2.5zm-8.5 4a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3zm11 5.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3z"/>
</svg> </p>
</div>
<div id="divinsidedivtwo" >
<img src="https://images.hindustantimes.com/img/2022/05/06/148x111/mothers-day-gccfc74981_1920_1651827118073_1651827143342.png" alt="">
</div>
</div>
<br>
<div id="second_two">
<div id="divinsidediv">
<h3> <a href="https://www.hindustantimes.com/lifestyle">HEALTH</a></h3>
<h4>Does your heart skip a beat or flutter? Symptoms and causes of heart palpitation</h4>
<p>Updated on May 09, 2022 <br> 11:11 AM IST
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-share" viewBox="0 0 16 16">
<path d="M13.5 1a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3zM11 2.5a2.5 2.5 0 1 1 .603 1.628l-6.718 3.12a2.499 2.499 0 0 1 0 1.504l6.718 3.12a2.5 2.5 0 1 1-.488.876l-6.718-3.12a2.5 2.5 0 1 1 0-3.256l6.718-3.12A2.5 2.5 0 0 1 11 2.5zm-8.5 4a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3zm11 5.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3z"/>
</svg> </p>
</div>
<div id="divinsidedivtwo" >
<img src="https://images.hindustantimes.com/img/2022/05/06/148x111/heart_palpitations_1651823812495_1651823826931.jpg" alt="">
</div>
</div>
<br>
<div id="second_two">
<div id="divinsidediv">
<h3> <a href="https://www.hindustantimes.com/lifestyle">HEALTH</a></h3>
<h4>Gaining weight due to water retention? Expert tips to shed kilos</h4>
<p>Updated on May 09, 2022 <br> 11:32 AM IST
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-share" viewBox="0 0 16 16">
<path d="M13.5 1a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3zM11 2.5a2.5 2.5 0 1 1 .603 1.628l-6.718 3.12a2.499 2.499 0 0 1 0 1.504l6.718 3.12a2.5 2.5 0 1 1-.488.876l-6.718-3.12a2.5 2.5 0 1 1 0-3.256l6.718-3.12A2.5 2.5 0 0 1 11 2.5zm-8.5 4a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3zm11 5.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3z"/>
</svg> </p>
</div>
<div id="divinsidedivtwo" >
<img src="https://images.hindustantimes.com/img/2022/05/06/148x111/water_weight_thumb_1651820400522_1651820413113.jpg" alt="">
</div>
</div>
<br>
<br>
<div id="second_two">
<div id="divinsidediv">
<h3> <a href="https://www.hindustantimes.com/lifestyle">RECIPE</a></h3>
<h4>Recipe: Tick taste and health with this dessert of Mango mousse hazelnut crumble </h4>
<p>Published on May 09, 2022 <br> 11:11 AM IST
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-share" viewBox="0 0 16 16">
<path d="M13.5 1a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3zM11 2.5a2.5 2.5 0 1 1 .603 1.628l-6.718 3.12a2.499 2.499 0 0 1 0 1.504l6.718 3.12a2.5 2.5 0 1 1-.488.876l-6.718-3.12a2.5 2.5 0 1 1 0-3.256l6.718-3.12A2.5 2.5 0 0 1 11 2.5zm-8.5 4a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3zm11 5.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3z"/>
</svg> </p>
</div>
<div id="divinsidedivtwo" >
<img src="https://images.hindustantimes.com/img/2022/05/06/148x111/Mango_Mousse_1651818956708_1651818998410.JPG" alt="">
</div>
</div>
<br>
<div id="second_two">
<div id="divinsidediv">
<h3> <a href="https://www.hindustantimes.com/lifestyle">HEALTH</a></h3>
<h4>Soha Ali Khan reveals 5 superfoods she swears by eating on empty stomach</h4>
<p>Published on May 09, 2022 <br> 11:42 AM IST
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-share" viewBox="0 0 16 16">
<path d="M13.5 1a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3zM11 2.5a2.5 2.5 0 1 1 .603 1.628l-6.718 3.12a2.499 2.499 0 0 1 0 1.504l6.718 3.12a2.5 2.5 0 1 1-.488.876l-6.718-3.12a2.5 2.5 0 1 1 0-3.256l6.718-3.12A2.5 2.5 0 0 1 11 2.5zm-8.5 4a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3zm11 5.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3z"/>
</svg> </p>
</div>
<div id="divinsidedivtwo" >
<img src="https://images.hindustantimes.com/img/2022/05/06/148x111/275797836_3184531728444237_7004581232507557846_n_1651816450002_1651816471113.jpg" alt="">
</div>
</div>
<br>
<div id="second_two">
<div id="divinsidediv">
<h3> <a href="https://www.hindustantimes.com/lifestyle">HEALTH</a></h3>
<h4>Hand hygiene dos and don'ts: 8 expert tips to clean and hygienic hands</h4>
<p>Published on May 09, 2022 <br> 11:42 AM IST
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-share" viewBox="0 0 16 16">
<path d="M13.5 1a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3zM11 2.5a2.5 2.5 0 1 1 .603 1.628l-6.718 3.12a2.499 2.499 0 0 1 0 1.504l6.718 3.12a2.5 2.5 0 1 1-.488.876l-6.718-3.12a2.5 2.5 0 1 1 0-3.256l6.718-3.12A2.5 2.5 0 0 1 11 2.5zm-8.5 4a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3zm11 5.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3z"/>
</svg> </p>
</div>
<div id="divinsidedivtwo" >
<img src="https://images.hindustantimes.com/img/2022/05/06/148x111/wash-your-hands-gbc7337151_1920_1651812833085_1651812847920.jpg" alt="">
</div>
</div>
<br>
<div id="second_two">
<div id="divinsidediv">
<h3> <a href="https://www.hindustantimes.com/lifestyle">TRAVEL</a></h3>
<h4>Carnival cruise ship passengers complain of high number of Covid-19 cases</h4>
<p>Published on May 09, 2022 <br> 11:42 AM IST
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-share" viewBox="0 0 16 16">
<path d="M13.5 1a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3zM11 2.5a2.5 2.5 0 1 1 .603 1.628l-6.718 3.12a2.499 2.499 0 0 1 0 1.504l6.718 3.12a2.5 2.5 0 1 1-.488.876l-6.718-3.12a2.5 2.5 0 1 1 0-3.256l6.718-3.12A2.5 2.5 0 0 1 11 2.5zm-8.5 4a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3zm11 5.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3z"/>
</svg> </p>
</div>
<div id="divinsidedivtwo" >
<img src="https://images.hindustantimes.com/img/2022/05/06/148x111/FSAarZJXwAAvjGA_1651809043858_1651809061708.jpg" alt="">
</div>
</div>
<br>
<div id="second_two">
<div id="divinsidediv">
<h3> <a href="https://www.hindustantimes.com/lifestyle">FESTIVAL</a></h3>
<h4>Happy Mother’s Day 2022: Tips to strengthen bond with mom</h4>
<p>Published on May 09, 2022 <br> 11:11 AM IST
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-share" viewBox="0 0 16 16">
<path d="M13.5 1a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3zM11 2.5a2.5 2.5 0 1 1 .603 1.628l-6.718 3.12a2.499 2.499 0 0 1 0 1.504l6.718 3.12a2.5 2.5 0 1 1-.488.876l-6.718-3.12a2.5 2.5 0 1 1 0-3.256l6.718-3.12A2.5 2.5 0 0 1 11 2.5zm-8.5 4a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3zm11 5.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3z"/>
</svg> </p>
</div>
<div id="divinsidedivtwo" >
<img src="https://images.hindustantimes.com/img/2022/04/30/148x111/pjimage_(11)_1651303163043_1651303174440.jpg" alt="">
</div>
</div>
</div>
<div id="third">
<div id="third_one">
<p>Advertisement</p>
<img src="https://tpc.googlesyndication.com/simgad/11644764083126907975" alt="">
</div>
<br>
<div id="third_two">
<h3> <span >[</span> PHOTOS<span>]</span> </h3>
<h4>Easy tips to beat the heat and prevent dehydration in summer <br></h4>
<img src="https://images.hindustantimes.com/img/2022/05/06/550x309/dehydration_thumb_1651828125630_1651828153037.jpg" alt="">
</div>
<br>
<div id="fourdivs">
<div id="twodiv">
<h4>Ladies, these are the signs you are approaching menopause<br> <br> </h4>
</div>
<div id="twodivs">
<img src="https://images.hindustantimes.com/img/2022/05/06/148x111/woman-g42574d88c_1920_1651803697892_1651803711619.jpg" alt="">
</div>
</div>
<br>
<div id="fourdivs" >
<div id="twodiv">
<h4>Covid spread 1,000 times more likely from air than surfaces: Study<br> </h4>
</div>
<div id="twodivs">
<img src="https://images.hindustantimes.com/img/2022/05/05/550x309/covi_1651751508184_1651751521484.jpg" alt="">
</div>
</div>
<br>
<div id="fourdivs">
<div id="twodiv">
<h4>Cinco de Mayo: Looking at the Mexican and Indian connect through the lenses of food <br> </h4>
</div>
<div id="twodivs">
<img src="https://images.hindustantimes.com/img/2022/05/05/150x84/a782b014-cc6a-11ec-aa8a-3e772098118b_1651752894718.jpg" alt="">
</div>
</div>
<br>
<div id="fourdivs">
<div id="twodiv">
<h4>Indian startup offers employees ‘right to nap’ at work for 30 min every day</h4>
</div>
<div id="twodivs">
<img src="https://images.hindustantimes.com/img/2022/05/06/148x111/Indian_startup_work_Employees_right_to_nap_Twitter_LinkedIn_1651821164059_1651821178745.jpg" alt="">
</div>
</div>
<div id="thirdclone">
<div id="thirdclone_one">
<p>Advertisement</p>
<img src="https://tpc.googlesyndication.com/simgad/7640532337425119970?sqp=4sqPyQQ7QjkqNxABHQAAtEIgASgBMAk4A0DwkwlYAWBfcAKAAQGIAQGdAQAAgD-oAQGwAYCt4gS4AV_FAS2ynT4&rs=AOga4qke7kl8PmO2suwnFDM1Dcg4vRXtYA" alt="">
</div>
<br>
<div id="third_two">
<h3> <span>[</span>TRENDING <span>]</span> </h3>
<h4>Kitten takes a sip of milk and does this before taking another one. Watch</h4>
<img src="https://images.hindustantimes.com/img/2022/05/06/550x309/human_Kitten_viral_Reddit_video_Food_1651826456711_1651826467122.PNG" alt="">
</div>
<br>
<div id="fourdivs">
<div id="twodiv">
<h4>Bride playfully tries pushing groom into pool, video ends with an adorable twist</h4>
</div>
<div id="twodivs">
<img src="https://images.hindustantimes.com/img/2022/05/06/148x111/Groom_Bride_Swimming_Pool_Video_Viral_Instagram_1651817649504_1651817653252.PNG" alt="">
</div>
</div>
<br>
<div id="fourdivs" >
<div id="twodiv">
<h4>Rakul Preet shows how to 'slay' in corset-inspired thigh-high slit dress</h4>
</div>
<div id="twodivs">
<img src="https://images.hindustantimes.com/img/2022/04/27/550x309/1_(40)_1651057509480_1651057557702.jpg" alt="">
</div>
</div>
<br>
<div id="fourdivs">
<div id="twodiv">
<h4>Workwear fashion tips: Trendy womenswear, menswear corporate styling for summers</h4>
</div>
<div id="twodivs">
<img src="https://images.hindustantimes.com/img/2022/05/06/148x111/icons8-team-yTwXpLO5HAA-unsplash_1651805679441_1651805696632.jpg" alt="">
</div>
</div>
<br>
<div id="fourdivs">
<div id="twodiv">
<h4>Horoscope Today: Astrological prediction for May 6, 2022</h4>
</div>
<div id="twodivs">
<img src="https://images.hindustantimes.com/img/2022/05/05/148x111/Image_2_1648736769902_1651765401411.jpg" alt="">
</div>
</div>
</div>
</div>
</div>
<div id="footer">
<div id="footercontainer">
<div class="footerdivone">
<div class="logo">
<img src="https://images.hindustantimes.com/images/app-images/2022/2/ht-logo.svg" alt=""/>
</div>
<div class="footerdiv">
<img src="https://images.hindustantimes.com/images/app-images/2022/2/mweb_button_svg.svg" alt=""/>
</div>
</div>
<p>Subscribe to our best newsletters</p>
<br>
<div class="footerdivtwo">
<div class="card2">
<select class="ht">
<option value="HT Daily Capsule">HT Daily Capsule</option>
<option value="@HT_Ed Calling">@HT_Ed Calling </option>
<option value="HT Wknd">HT Wknd</option>
<option value="HT Week Ahead">HT Week Ahead</option>
<option value="HT Capital Letters">HT Capital Letters</option>
<option value="Wired Wisdom">Wired Wisdom</option>
<option value="HT City">HT City</option>
<option value="HT Mind the Gap">HT Mind the Gap</option>
<option value="HT Kick Off">HT Kick Off</option>
</select>
<input class="email" type="email" placeholder="Enter email Address"/>
<button class="btn">SUBSCRIBE</button>
</div>
<div class="socialmedialogo">
<a href="https://www.facebook.com/hindustantimes">
<img src="https://images.hindustantimes.com/images/app-images/2022/1/footer-icons/fb-logo.svg" alt=""/>
</a>
<a href="https://www.linkedin.com/company/hindustantimes">
<img src=" https://images.hindustantimes.com/images/app-images/2022/1/footer-icons/in-logo.svg" alt=""/>
</a>
<a href="https://www.instagram.com/hindustantimes/">
<img src=" https://images.hindustantimes.com/images/app-images/2022/2/instagram.svg" alt=""/>
</a>
<a href="https://twitter.com/settings/account/personalization">
<img src=" https://images.hindustantimes.com/images/app-images/2022/1/footer-icons/tw-logo.svg" alt=""/>
</a>
</div>
</div>
<hr>
</div>
<div id="footerCon">
<div id="firstCon">
<div class="col">
<a href=""><p>LATEST NEWS</p></a>
<a href=""><p>WORLD NEWS</p></a>
<a href=""><p>INDIA NEWS</p></a>
<a href=""><p>CRICKET</p></a>
<a href=""><p>CITY NEWS</p></a>
<ul>
<li><a href="">Bangaluru</a></li>
<li><a href="">Bhopal</a></li>
<li><a href="">Chandigarh</a></li>
<li><a href="">Dahradun</a></li>
<li><a href="">Delhi</a></li>
<li><a href="">Gurugram</a></li>
<li><a href="">Indore</a></li>
<li><a href="">Jaipur</a></li>
<li><a href="">Kolkata</a></li>
<li><a href="">Lucknow</a></li>
<li><a href="">Mumbai</a></li>
<li><a href="">Noida</a></li>
<li><a href="">Patna</a></li>
<li><a href="">Pune</a></li>
</ul>
</li>
</div>
<div class="col">
<ul>
<li><a href="">Ranchi</a></li>
<li><a href="">Others</a></li>
</ul>
<a href="" ><p id="Entert">ENTERTAINMENT</p></a>
<ul>
<li><a href="">Bollywood</a></li>
<li><a href="">Hollywood</a></li>
<li><a href="">Music</a></li>
<li><a href="">Tamil Cinema</a></li>
<li><a href="">Telugu Cinema</a></li>
<li><a href="">TV</a></li>
<li><a href="">Web Stories</a></li>
<li><a href="">Others</a></li>
</ul>
<a href=""><p id="Astro">ASTROLOGY</p></a>
<ul>
<li><a href="">Horoscope</a></li>
<li><a href="">Vastu</a></li>
<li><a href="">Gemstones</a></li>
<li><a href="">Panchang Today</a></li>
<li><a href="">Compatibility Calculator</a></li>
<li><a href="">Your Fortune Today</a></li>
</ul>
</div>
<div class="col">
<a href=""><p>EDUCATION</p></a>
<ul>
<li><a href="">Admission News</a></li>
<li><a href="">Board Exams</a></li>
<li><a href="">Competitibe Exams</a></li>
<li><a href="">Employment News</a></li>
<li><a href="">Exam Results</a></li>
<li><a href="">Education News</a></li>
</ul>
<a href=""><p id="Lifest">LIFESTYLE</p></a>
<ul>
<li><a href="">Art and Culture</a></li>
<li><a href="">Brunch</a></li>
<li><a href="">Fashion</a></li>
<li><a href="">Festivals</a></li>
<li><a href="">Health</a></li>
<li><a href="">Recipes</a></li>
<li><a href="">Relationship</a></li>
<li><a href="">Travel</a></li>
</ul>
<a href=""><p>WEB STORIES</p></a>
<a href=""><p>TRENDING</p></a>
</div>
<div class="col">
<a href=""><p>BUSINESS</p></a>
<a href=""><p>PHOTOS</p></a>
<a href=""><p>VIDEOS</p></a>
<a href=""><p>BUDGET</p></a>
<a href=""><p>ENVIRONMENT</p></a>
<a href=""><p>SCIENCE</p></a>
<a href=""><p>OPINION</p></a>
<a href=""><p>EDITORIALS</p></a>
<a href=""><p id="sport">STORTS</p></a>
<ul>
<li><a href="">Badminton</a></li>
<li><a href="">Football</a></li>
<li><a href="">Hockey</a></li>
<li><a href="">Tamil Tennis</a></li>
<li><a href="">Others</a></li>
</ul>
<a href=""><p id="books">BOOKS</p></a>
<a href=""><p>HT INSIGHT</p></a>
<a href=""><p>HT WEEKEND</p></a>
<a href=""><p>BRAND POST</p></a>
</div>
<div class="col">
<a href=""><p>BRAND STORIES</p></a>
<a href=""><p>ELECTIONS</p></a>
<ul>
<li><a href="">Uttar Pradesh Assembly<p id="aarif">Election</p></a></li>
<li><a href="">Punjab Assembly Election</a></li>
<li><a href="">Goa Assembly Election</a></li>
<li><a href="">Uttarakhand Assembly<p id="khan">Election</p></a></li>
<li><a href="">Manipur Assembly Election</a></li>
</ul>
<a href=""><p>QUICKREADS</p></a>
<a href=""><p>COVID 19</p></a>
<a href=""><p>OMICRON</p></a>
<a href=""><p>ASSEMBLY ELECTION</p></a>
<a href=""><p>GAMES</p></a>
<ul>
<li><a href="">Daily Sudoku</a></li>
<li><a href="">Daily Crossword</a></li>
<li><a href="">Daily Word Jumble</a></li>
</ul>
<a href=""><p>QUIZ</p></a>
</div>
<div class="col">
<a href=""><p>TRENDING NEWS</p></a>
<ul>
<li><a href="">India Covid Cases</a></li>
<li><a href="">Russia Ukraine War Live</a></li>
<li><a href="">Horoscope Today</a></li>
<li><a href="">LIC IPO</a></li>
<li><a href="">jodhpur violence</a></li>
</ul>
<a href=""><p>TRENDING TOPICS</p></a>
<ul>
<li><a href="">IPL 2022</a></li>
<li><a href="">Today Horoscope</a></li>
<li><a href="">Narendra Modi</a></Nli>
<li><a href=""> Petrol Prices</a></li>
<li><a href="">Russia Ukraine Crisis</a></li>
<li><a href="">Ukraine</a></li>
<li><a href="">Russia</a></li>
<li><a href="">IPO</a></li>
</ul>
</div>
</div>
<div id="secondCon">
<div id="info">
<div><a href="">About Us</a></div>
<div><a href="">Contact Us</a></div>
<div><a href="">Term Of Use</a></div>
<div><a href="">Privecy Policy</a></div>
<div><a href="">Weather Today</a></div>
<div><a href="">HT Newslatters</a></div>
<div><a href="">Subscription</a></div>
<div><a href="">Disclaimer</a></div>
<div><a href="">Print Ad Rates</a></div>
<div><a href="">Code Of Ethics</a></div>
<div><a href="">Site Map</a></div>
<div><a href="">RSS Feeds</a></div>
</div>
<!-- <hr> -->
<div id="footerLogo">
<div><img src="https://images.hindustantimes.com/images/app-images/2022/1/footer-icons/mint-logo.svg" alt="logo"></div>
<div><img src="https://images.hindustantimes.com/images/app-images/2022/1/footer-icons/HH-logo.svg" alt="logo"></div>
<div><img src="https://images.hindustantimes.com/images/app-images/2022/1/footer-icons/mint-lounge.svg" alt="logo"></div>
<div><img src="https://images.hindustantimes.com/images/app-images/2022/1/footer-icons/HT_Auto.svg" alt="logo"></div>
<div><img src="https://images.hindustantimes.com/images/app-images/2022/1/footer-icons/ht-tech.svg" alt="logo"></div>
<div><img src="https://images.hindustantimes.com/images/app-images/2022/1/footer-icons/ht-bangla.svg" alt="logo"></div>
<div><img src="https://images.hindustantimes.com/images/app-images/2022/1/footer-icons/healthshots.png" alt="logo"></div>
<div><img src="https://images.hindustantimes.com/images/app-images/2022/1/footer-icons/OTT-icon.png" alt="logo"></div>
<div><img src="https://images.hindustantimes.com/images/app-images/2022/1/footer-icons/slurrp-icon.svg" alt="logo"></div>
<div><img src="https://images.hindustantimes.com/images/app-images/2022/1/footer-icons/smartcast-logo.png" alt="logo"></div>
</div>
<!-- <hr> -->
<p id="bottom">@ 2022 HindustanTimes</p>
</div>
</div>
</div>
</body>
</html>
<script>
//subscribe
var changesub = localStorage.getItem("done") || null;
document.querySelector("#sub a").addEventListener("click", subscribe)
function subscribe() {
window.location.href = "subscribe.html"
}
if (changesub !== null) {
document.querySelector("#btnsub").innerText = "Subscribed";
document.querySelector("#trialdays").innerText = "";
}
else {
document.querySelector("#btnsub").innerText = "Subscribe";
}
//login
var userData = localStorage.getItem("userName") || null;
if (userData !== null) {
document.querySelector("#signuser").innerText = userData;
}
else {
document.querySelector("#signuser").innerText = "Sign in";
}
//log out
document.querySelector("#out").addEventListener("click", out)
function out() {
localStorage.clear(changesub);
window.location.reload();
}
//for e-paper
document.querySelector("#papere").addEventListener("click", gotoPaper);
// console.log(changesub);
function gotoPaper() {
var changepaper = localStorage.getItem("all done") || null;
console.log(changepaper);
if (changepaper !== null) {
window.location.href="epaper.html";
}
else {
localStorage.removeItem("all done");
window.location.href="navbar.html";
}
}
function openNav() {
document.getElementById("mySidenav").style.width = "350px";
}
function closeNav() {
document.getElementById("mySidenav").style.width = "0";
}
</script>