forked from 11-DEEPAK-KUMAR-11/HINDUSTAN-TIMES
-
Notifications
You must be signed in to change notification settings - Fork 0
/
world.html
969 lines (879 loc) · 44.7 KB
/
world.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
<!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>World</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>
<h3 id="newsplace"> <a href="https://www.hindustantimes.com/india-news">INDIAN NEWS</a> </h3>
<h4 id="latestnews_section">Two years after Galwan, de- <br> escalation still to take place <br> on Ladakh LAC</h4>
<p>Updated on May 03,<br>08:31 AM IST</p>
<hr>
<h3 id="newsplace"> <a href="https://www.hindustantimes.com/india-news">INDIAN NEWS</a> </h3>
<h4 id="latestnews_section">PM Modi thanks Macron for <br> France visit; 3-day Europe <br> tour concludes</h4>
<p>Updated on May 03,<br>06:52 PM IST</p>
<hr>
<h3 id="newsplace"> <a href="https://www.hindustantimes.com/world-news">WORLD NEWS</a> </h3>
<h4 id="latestnews_section">Imran Khan talks about <br> sons, Bushra Bibi; says, <br> ‘Worst thing of divorce is…’</h4>
<p>Updated on May 03,<br>09:02 AM IST</p>
<hr>
<h3 id="newsplace"> <a href="https://www.hindustantimes.com/india-news">INDIA NEWS</a> </h3>
<h4 id="latestnews_section">Covid-19: Some outbound <br> flyers may be able to get <br> boosters early</h4>
<p>Updated on May 03,<br>07:12 PM IST</p>
<hr>
<h3 id="newsplace"> <a href="https://www.hindustantimes.com/business">Business NEWS</a> </h3>
<h4 id="latestnews_section">Sensex opens in green, 535 <br> points up at 56,204; Nifty <br> inches towards 17k</h4>
<p>Published on May 03,<br>09:20 PM IST</p>
<hr>
<br>
<br>
<br>
<div id="firstOne">
<h3> <span>[</span> DON'T MISS <span>]</span> </h3>
<h3 id="newsplace1"> <a href="https://www.hindustantimes.com/entertainment/bollywood">BOLLYWOOD</a> </h3>
<h4 id="recommended_news">Huma Qureshi-Saqib <br> Saleem's Eid bash: Jackky- <br> Rakul, Rhea, Sonakshi <br> attend</h4>
<p>Published on May 03,<br>08:36 PM IST</p>
<hr>
<h3 id="newsplace1"> <a href="https://www.hindustantimes.com/entertainment/bollywood">BOLLYWOOD</a> </h3>
<h4 id="recommended_news">Ranbir Kapoor-Alia Bhatt <br> seen together for first time <br> after wedding, fans react</h4>
<p>Published on May 03,<br>07:22 PM IST</p>
<hr>
<h3 id="newsplace1"> <a href="https://www.hindustantimes.com/cricket">CRICKET</a> </h3>
<h4 id="recommended_news">'Big of Jadeja to admit <br> captaincy out of his league. <br> Male ego doesn't allow it'</h4>
<p>Published on May 03,<br>07:40 AM IST</p>
<hr>
<h3 id="newsplace1"> <a href="https://www.hindustantimes.com/world%20news">WORLD NEWS</a> </h3>
<h4 id="recommended_news">India, France discuss <br> Ukraine crisis, terrorism, <br> Afghanistan: Key points <br> from joint statement</h4>
<p>Updated on May 03,<br>05:20 PM IST</p>
<hr>
<h3 id="newsplace1"> <a href="https://www.hindustantimes.com/education">INDIA NEWS</a> </h3>
<h4 id="recommended_news">Depression over Andaman <br> Sea likely to help timely <br> onset of monsoon: IMD</h4>
<p>Published on May 03,<br>11:10 PM IST</p>
<hr>
<h3> <a href="https://www.hindustantimes.com/don-t-miss">View all ></a> </h3>
</div>
</div>
<div id="second">
<p> <a href="home.html">Home</a> / <span id="slash">World News</span> </p>
<h2> <span>[</span> WORLD NEWS <span>]</span> </h2>
<div id="second_one">
<h3> <a href="https://www.hindustantimes.com/india-news">WORLD NEWS</a></h3>
<h2>India, France discuss Ukraine crisis, <br> terrorism, Afghanistan: Key takeaways </h2>
<img src="https://images.hindustantimes.com/img/2022/05/05/550x309/AP05-05-2022-000013B-0_1651728924474_1651728947840.jpg" alt="">
<p>Published on May 03,11:09 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/world-news">WORLD NEWS</a></h3>
<h4>Beijing returns to work from home as <br> subway stations shut amid Covid surge </h4>
<p>Published on May 03, 2022 <br> 10:38 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/05/148x111/HEALTH-CORONAVIRUS-CHINA-CONSUMER-0_1651449982117_1651727275966.JPG" alt="">
</div>
</div>
<br>
<div id="second_two">
<div id="divinsidediv">
<h3> <a href="https://www.hindustantimes.com/world-news"> WORLD NEWS</a></h3>
<h4>Russia practises nuclear-capable missile <br> strikes, says defence ministry </h4>
<p>Updated on May 03, 2022 <br> 10:12 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/05/148x111/UKRAINE-CRISIS-PUTIN-ENERGY-5_1650466355980_1651725609277.JPG" alt="">
</div>
</div>
<br>
<div id="second_two">
<div id="divinsidediv">
<h3> <a href="https://www.hindustantimes.com/world-news">World NEWS</a></h3>
<h4>Imran Khan talks about sons, Bushra <br> Bibi; says, ‘Worst thing of divorce is…’</h4>
<p>Updated on May 03, 2022 <br> 08:54 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/05/148x111/bushra_bibi_1649220308197_1651721044945.JPG" alt="">
</div>
</div>
<br>
<div id="second_two">
<div id="divinsidediv">
<h3> <a href="https://www.hindustantimes.com/world-news">World NEWS </a></h3>
<h4>Taliban stops issuing driving licences to <br> women in Afghanistan: Report</h4>
<p>Updated on May 03, 2022 <br> 07:54 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/05/148x111/Afghanistan_Taliban_1651715322343_1651715322835.jpg" alt="">
</div>
</div>
<br>
<div id="second_two">
<div id="divinsidediv">
<h3> <a href="https://www.hindustantimes.com/world-news">World NEWS </a></h3>
<h4>Russia pounds Ukraine, targets Western <br> weapon supply routes</h4>
<p>Updated on May 03, 2022 <br> 07:09 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/04/148x111/82851bdc-8c4a-11eb-af96-ff2673230aac_1616554020679_1651653129509.jpg" alt="">
</div>
</div>
<br>
<div id="second_two">
<div id="divinsidediv">
<h3> <a href="https://www.hindustantimes.com/world-news">World NEWS</a></h3>
<h4>Twitter courts advertisers amid uncertain <br> future under Musk</h4>
<p>Published on May 03, 2022 <br> 06:41 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/05/148x111/TWITTER-M-A-MUSK-COMPANY-1_1651152316576_1651712939246.JPG" alt="">
</div>
</div>
<br>
<div id="advertisement">
<div id="firstadvertisement">
<p>Advertisement</p>
<img src="https://ad.adsrvr.org/x1pu8ng/fzti7w1/tgnsx7f9_300x250.png?cb=895527" alt="">
</div>
</div>
</div>
<div id="third">
<div id="third_one">
<p>Advertisement</p>
<img src="https://tpc.googlesyndication.com/sadbundle/8099007390643636477/300-250.jpg" alt="">
</div>
<br>
<div id="third_two">
<h3> <span >[</span> PHOTOS <span>]</span> </h3>
<h4>Rakul Preet shows how to rock polka- <br> dots this summer through latest pics</h4>
<img src="https://images.hindustantimes.com/img/2022/05/05/550x309/1_(24)_1651726968455_1651726998156.jpg" alt="">
</div>
<br>
<div id="fourdivs">
<div id="twodiv">
<h4>Sonakshi Sinha is elegance <br> personified in neon crystal <br> saree for Eid 2022</h4>
</div>
<div id="twodivs">
<img src="https://images.hindustantimes.com/img/2022/05/05/148x111/1_(23)_1651722793963_1651722878522.jpg" alt="">
</div>
</div>
<br>
<div id="fourdivs" >
<div id="twodiv">
<h4>Royal Challengers <br> Bangalore vs Chennai <br> Super Kings, IPL 2022: <br> Action in images</h4>
</div>
<div id="twodivs">
<img src="https://images.hindustantimes.com/img/2022/05/04/148x111/PTI05-04-2022-000231B-0_1651686443433_1651686563758.jpg" alt="">
</div>
</div>
<br>
<div id="fourdivs">
<div id="twodiv">
<h4>Mercury dips as rain lashes <br> parts of India; more <br> showers likely | Pics<br> -Fitr</h4>
</div>
<div id="twodivs">
<img src="https://images.hindustantimes.com/img/2022/05/04/148x111/ANI-20220504131-0_1651674364964_1651674610805.jpg" alt="">
</div>
</div>
<br>
<div id="fourdivs">
<div id="twodiv">
<h4>Anand Mahindra’s tweet on <br> ‘reliable forecasting <br> mechanism’ sparks <br> laughter </h4>
</div>
<div id="twodivs">
<img src="https://images.hindustantimes.com/img/2022/05/05/148x111/_78d713a2-6f59-11e9-9975-c8a46a094be1_1651720091875.jpg" alt="">
</div>
</div>
<h3 id="viewallOpt">View all ></h3>
<div id="thirdclone">
<div id="thirdclone_one">
<p>Advertisement</p>
<img src="https://tpc.googlesyndication.com/simgad/6909153463142088273?sqp=4sqPyQQ7QjkqNxABHQAAtEIgASgBMAk4A0DwkwlYAWBfcAKAAQGIAQGdAQAAgD-oAQGwAYCt4gS4AV_FAS2ynT4&rs=AOga4qmgy0XDYM0o93pT9g61uGHDEvRHWA" alt="">
</div>
<br>
<div id="third_two">
<h3> <span>[</span> TRENDING <span>]</span> </h3>
<h4>Cat gets trapped in shower, meows loudly <br> till it is let out. Watch cute video</h4>
<img src="https://images.hindustantimes.com/img/2022/05/05/550x309/Cat_gets_trapped_in_shower_meows_loudly_till_it_is_let_out_Watch_cute_video_1651727119193_1651727136274.png" alt="">
</div>
<br>
<div id="fourdivs">
<div id="twodiv">
<h4>Cats react differently while <br> sitting with their uncle. <br> Watch funnily cute video</h4>
</div>
<div id="twodivs">
<img src="https://images.hindustantimes.com/img/2022/05/05/148x111/Uncle_Cat_Instagram_Video_Viral_1651723655119_1651723672347.PNG" alt="">
</div>
</div>
<br>
<div id="fourdivs" >
<div id="twodiv">
<h4>This cute doggo goes on <br> cycling and skating <br> adventures with her <br> humans. Watch</h4>
</div>
<div id="twodivs">
<img src="https://images.hindustantimes.com/img/2022/05/05/148x111/cute_doggo_goes_on_cycling_and_skating_adventures_with_her_humans_1651722436820_1651722455439.png" alt="">
</div>
</div>
<br>
<div id="fourdivs">
<div id="twodiv">
<h4>Ukraine: Joe Biden to discuss 'additional' <br> Russia sanctions with G7 this week</h4>
</div>
<div id="twodivs">
<img src="https://images.hindustantimes.com/img/2022/05/04/148x111/UKRAINE-CRISIS-USA-POLAND-25_1648350861192_1651678791698.JPG" alt="">
</div>
</div>
<br>
<div id="fourdivs">
<div id="twodiv">
<h4>Sri Lanka crisis will last at least two more <br> years: Govt
</h4>
</div>
<div id="twodivs">
<img src="https://images.hindustantimes.com/img/2022/05/04/148x111/FILES-SRI-LANKA-POLITICS-UNREST-ECONOMY-0_1651678053164_1651678080095.jpg" alt="">
</div>
</div>
<h3 id="viewallOpt">View all ></h3>
</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>