-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
1216 lines (1173 loc) · 59.1 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
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
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!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>News HeadLines, English News, Today Headlines|Hindustan Times</title>
<link rel="stylesheet" href="index.css" />
<script
src="https://kit.fontawesome.com/cddbab1672.js"
crossorigin="anonymous"
></script>
</head>
<body onLoad="renderTime();">
<header id="header">
<div class="nav">
<div class="first">
<div class="exploreSearch">
<div>
<button>
<span>
<svg viewBox="0 0 448 512">
<!--! Font Awesome Pro 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. -->
<path
d="M256 96H32C14.33 96 0 81.67 0 64C0 46.33 14.33 32 32 32H256C273.7 32 288 46.33 288 64C288 81.67 273.7 96 256 96zM256 352H32C14.33 352 0 337.7 0 320C0 302.3 14.33 288 32 288H256C273.7 288 288 302.3 288 320C288 337.7 273.7 352 256 352zM0 192C0 174.3 14.33 160 32 160H416C433.7 160 448 174.3 448 192C448 209.7 433.7 224 416 224H32C14.33 224 0 209.7 0 192zM416 480H32C14.33 480 0 465.7 0 448C0 430.3 14.33 416 32 416H416C433.7 416 448 430.3 448 448C448 465.7 433.7 480 416 480z"
></path>
</svg>
</span>
<strong>Explore</strong>
</button>
</div>
<div>
<form role="search" id="form">
<input
type="search"
id="query"
name="q"
placeholder="Search..."
aria-label="Search through site content"
/>
<button>Search</button>
</form>
</div>
</div>
<div id="clockDisplay" class="dateTime"></div>
</div>
<div class="logo">
<h1>
<a href="/index.html">
<img
src="https://www.hindustantimes.com/res/images/ht-logo.svg"
alt="Hindusthan Times News"
/>
</a>
</h1>
</div>
<div class="second">
<div>
<a href="https://www.dailysudoku.com/">Games</a>
<a href="e-paper.html">E-Paper</a>
<a href="signup.html">Sign Up</a>
</div>
<div>
<span><p>Start 15 days Free Trial</p></span>
<button>Subscribe</button>
</div>
</div>
</div>
<!-- Second part of header -->
<div class="headMenu">
<div>
<ul>
<li class="active"><a href="#">Home</a></li>
<li><a href="#">Latest</a></li>
<li><a href="#">India</a></li>
<li><a href="#">World</a></li>
<li><a href="#">Cities</a></li>
<li><a href="#">Entertainment</a></li>
<li><a href="#">Cricket</a></li>
<li><a href="#">Lifestyle</a></li>
<li><a href="#">Astrology</a></li>
<li><a href="#">Editorials</a></li>
<li><a href="#">For You</a></li>
<li><a href="product.html">Shop Now</a></li>
</ul>
<ul>
<li><a href="#">Quickreads</a></li>
<li><a href="#">Daily Digests</a></li>
<li><a href="#">Videos</a></li>
<li><a href="#">Trending</a></li>
<li><a href="#">Web Stories</a></li>
<li><a href="#">Photos</a></li>
<li><a href="#">Following</a></li>
<li><a href="#">Education</a></li>
<li><a href="#">Bollywood</a></li>
<li>
<a href="#">+7 More</a>
<div class="sub">
<ul>
<li><a href="#">CoronaVirus</a></li>
<li><a href="#">HT Premiun</a></li>
<li><a href="#">Games</a></li>
<li><a href="#">Videos</a></li>
<li><a href="#">Opinion</a></li>
<li><a href="#">Health</a></li>
<li><a href="#">Sports</a></li>
</ul>
</div>
</li>
</ul>
</div>
</div>
</header>
<!-- Content Section -->
<section>
<div id="container">
<div id="leftbox">
<div id="leftbox1">
<h3 id="headings"><span>[</span> LATEST NEWS <span>]</span></h3>
<h3>
Congress's Deepender Hooda shares video of his 'sealed' house: 'Is it
crime to...'
</h3>
<p>Published on Jun 15, 12:44 PM IST</p>
<hr />
<h3>What is 5G?</h3>
<p>Published on Jun 15, 12:42 PM IST</p>
<hr />
<h3>
Harsh Goenka shares Elon Musk's old interview, video may leave you
motivated
</h3>
<p>Published on Jun 15, 12:35 PM IST</p>
<hr />
<h3>
Amber Heard says she did 'horrible things' while she was married to
Johnny Depp
</h3>
<p>Updated on Jun 15, 12:38 PM IST</p>
<hr />
<h3>
Jay Bhanushalis asys he gave '2000 auditions' before bagging his debut
role
</h3>
<p>Published on Jun 15, 12:31 PM IST</p>
<hr />
<button id="leftboxbutton">View All ></button>
</div>
<div id="leftbox3">
<h3 id="headings"><span>[</span>RECOMMENDED FOR YOU<span>]</span></h3>
<h3>
PM Modi praises ties with Iran after meeting FM Hossein amid Prophet
insult row
</h3>
<p>Updated on Jun 08, 2022 09:55 PM IST</p>
<h3>
Hyderabad cops get 3-day custody of prime suspect in minor's gang rape
case
</h3>
<p>Published on Jun 08, 2022 08:17 PM IST</p>
<h3>Twitter to provide Musk with raw daily tweet data: Reports</h3>
<p>Published on Jun 00, 2022 06:00 AM IST</p>
<h3>
BJP cautions amid Prophet insult outcry - report: 'Don't insult any
religion'
</h3>
<p>Published on Jun 00, 2022 11:11 AM IST</p>
<button id="leftboxbutton">View All ></button>
</div>
</div>
<div id="midbox">
<h1 id="midheadings"><span>[</span>TOP NEWS<span>]</span></h1>
<div id="modibox">
<h3 style="color: teal; font-weight: bold; width: 100%">INDIA NEWS</h3>
<h1 style="font-size: x-large; width: 100%">
Centre clears 5G spectrum auction for 10x faster services, to be held by
July
</h1>
<img
style="border-radius: 7px; width: 100%"
src="https://images.hindustantimes.com/img/2022/06/15/550x309/07c09048-e68a-11ec-ae4d-ec7dbf68713d_1655270816182_1655270827461.jpg"
alt="error"
/>
<p>Published on Jun 15, 2022 10:58AM IST</p>
<img
id="share"
src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRSjW9U4VceErj7S76msNUAkXZHBU7EHuFiDg&usqp=CAU"
alt="error"
/>
<img
id="bookmark"
src="https://www.pxpng.com/public/uploads/preview/-11608565643y2ec8jdhc7.png"
alt="error"
/>
</div>
<div id="secondmodi">
<h3 style="color: teal; font-weight: bold">INDIA NEWS</h3>
<h3 style="width: 60%">
Day 3 of Rahul Gandhi questioning by ED and huge protests by Congress|
Video
</h3>
<p>Published on Jun 15, 2022 10:58AM IST</p>
<img
id="secondmodi1"
src="https://images.hindustantimes.com/img/2022/06/15/148x111/PTI06-15-2022-000022A-0_1655274039218_1655274062591.jpg"
alt="error"
/>
</div>
<div id="secondmodi">
<h3 style="color: teal; font-weight: bold">INDIA NEWS</h3>
<h3 style="width: 60%">
Covaxin booster shot enhances efficacy against Delta, Omicron variants:
Study
</h3>
<p>Published on Jun 15, 2022 11:59AM IST</p>
<img
id="secondmodi1"
src="https://images.hindustantimes.com/img/2022/06/15/150x84/445b069c-ec74-11ec-816d-25a8f4149995_1655274549915.jpg"
alt="error"
/>
</div>
<div id="secondmodi">
<h3 style="color: teal; font-weight: bold">INDIA NEWS</h3>
<h3 style="width: 60%">
'Are we terrorists?' Congress leader amid protests on Rhul Gandhi's ED
summons
</h3>
<p>Published on Jun 15, 2022 12:44 PM IST</p>
<img
id="secondmodi1"
src="https://images.hindustantimes.com/img/2022/06/15/148x111/PTI06-15-2022-000026A-0_1655275475785_1655275505536.jpg"
alt="error"
/>
</div>
<div id="secondmodi">
<h3 style="color: teal; font-weight: bold">WORLD NEWS</h3>
<h3 style="width: 60%">
'This is how you die': US man recalls being swallowed ny humpback whale
</h3>
<p>Published on Jun 15, 2022 12:11 PM IST</p>
<img
id="secondmodi1"
src="https://images.hindustantimes.com/img/2022/06/15/148x111/AFP_9BX2L6_1623489835537_1655275114928.jpg"
alt="error"
/>
</div>
<div id="secondmodi">
<h3 style="width: 60%">
Citreon C3 first-frive review: French blossom with spunk, crafted for
the young
</h3>
<p>Published on Jun 15, 2022 12:02 PM IST</p>
<img
id="secondmodi1"
src="https://images.hindustantimes.com/img/2022/06/15/148x111/Citroen_C3_7_1655190616474_1655274737816_1655274741272.JPG"
alt="error"
/>
</div>
<div id="secondmodi">
<h3 style="color: teal; font-weight: bold">CRICKET</h3>
<h3 style="width: 60%">
Amit MIshra's 'low-on-fuel plane with faulty engine' tweet on Hardik
goes viral
</h3>
<p>Published on Jun 15, 2022 11:40 PM IST</p>
<img
id="secondmodi1"
src="https://images.hindustantimes.com/img/2022/06/15/148x111/India-South-Africa-Cricket-27_1655261848592_1655261862019.jpg"
alt="error"
/>
</div>
<div id="secondmodi">
<h3 style="color: teal; font-weight: bold">TV</h3>
<h3 style="width: 60%">
Case filed against Kaaranvir Bohra after woman accuses him of fraud
</h3>
<p>Published on Jun 15, 2022 12:03 PM IST</p>
<img
id="secondmodi1"
src="https://images.hindustantimes.com/img/2022/06/15/148x111/kv_1655272988882_1655272996645.png"
alt="error"
/>
</div>
<br />
<br />
<br />
<br />
<h1 id="midheadings"><span>[</span>DON'T MISS<span>]</span></h1>
<div id="modibox">
<h3 style="color: teal; font-weight: bold">BOLLYWOOD</h3>
<h1 style="font-size: x-large; width: 100%">
Kiara Advani on dating Sidharth Malhotra: 'Wherebis this coming from?'
</h1>
<img
style="border-radius: 7px; width: 100%"
src="https://images.hindustantimes.com/img/2022/06/17/550x309/sidharth-kiara_1651628287653_1655439840302.jpg"
alt="error"
/>
<p>Published on Jun 15, 2022 10:58AM IST</p>
<img
id="share"
src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRSjW9U4VceErj7S76msNUAkXZHBU7EHuFiDg&usqp=CAU"
alt="error"
/>
<img
id="bookmark"
src="https://www.pxpng.com/public/uploads/preview/-11608565643y2ec8jdhc7.png"
alt="error"
/>
</div>
<div id="secondmodi">
<h3 style="color: teal; font-weight: bold">TAMIL CINEMA</h3>
<h3 style="width: 60%">
Veetla Vishesham review: Badaai Ho's Tamil remake hits all the right
notes
</h3>
<p>Published on Jun 17, 2022 01:44PM IST</p>
<img
id="secondmodi1"
src="https://images.hindustantimes.com/img/2022/06/17/148x111/Veetla_Vishesham1_1655452307545_1655452325861.jpg"
alt="error"
/>
</div>
<div id="secondmodi">
<h3 style="color: teal; font-weight: bold">CRICKET</h3>
<h3 style="width: 60%">
Prithvi Shaw's contrasting Instagram stories after India snub and
Jaiswal koncks
</h3>
<p>Updated on Jun 17, 2022 11:46AM IST</p>
<img
id="secondmodi1"
src="https://images.hindustantimes.com/img/2022/06/17/148x111/PTI04-20-2022-000247B-0_1655438185858_1655438214926.jpg"
alt="error"
/>
</div>
<div id="secondmodi">
<h3 style="color: teal; font-weight: bold">FOOTBALL</h3>
<h3 style="width: 60%">
Fans go berserk as Tottenham share special post after Chhetri equals
huge record
</h3>
<p>Published on Jun 17, 2022 12:48PM IST</p>
<img
id="secondmodi1"
src="https://images.hindustantimes.com/img/2022/06/17/148x111/ANI-20220608360-0_1655449751858_1655449769269.jpg"
alt="error"
/>
</div>
<div id="secondmodi">
<h3 style="color: teal; font-weight: bold">HEALTH</h3>
<h3 style="width: 60%">
Monsoon Ayurveda: Simple and effective health tips during rainy season
</h3>
<p>Published on Jun 17, 2022 01:48PM IST</p>
<img
id="secondmodi1"
src="https://images.hindustantimes.com/img/2022/06/17/148x111/monsoon_ayurveda_thumb_1655451716556_1655451728451.jpg"
alt="error"
/>
</div>
<button
style="
padding: 10px 45px 10px 45px;
background-color: teal;
color: white;
font-weight: bolder;
border-radius: 5px;
margin-left: 37%;
margin-top: 15px;
"
>
VIEW ALL
</button>
<br />
<br />
<div id="modibox">
<h3 style="color: teal; font-weight: bold">CRICKET</h3>
<h1 style="font-size: x-large; width: 100%">
'Not a lot of credit goes to him': Gavaskar bowled over by Indian
cricketer
</h1>
<img
style="border-radius: 7px; width: 100%"
src="https://images.hindustantimes.com/img/2022/06/17/550x309/India-South-Africa-Cricket-43_1655449462409_1655449475443.jpg"
alt="error"
/>
<p>Published on Jun 17, 2022 12:40AM IST</p>
<img
id="share"
src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRSjW9U4VceErj7S76msNUAkXZHBU7EHuFiDg&usqp=CAU"
alt="error"
/>
<img
id="bookmark"
src="https://www.pxpng.com/public/uploads/preview/-11608565643y2ec8jdhc7.png"
alt="error"
/>
</div>
<div id="secondmodi">
<h3 style="color: teal; font-weight: bold">CRICKET</h3>
<h3 style="width: 60%">
'Hardik Pandya is the best captain I've played under'
</h3>
<p>Published on Jun 25, 2022 11:30 AM IST</p>
<img
id="secondmodi1"
src="https://images.hindustantimes.com/img/2022/06/17/148x111/ANI-20220608335-0_1655445506702_1655445519781.jpg"
alt="error"
/>
</div>
<div id="secondmodi">
<h3 style="color: teal; font-weight: bold">CRICKET</h3>
<h3 style="width: 60%">
'His spot will be up for grabs when kohli, Suryakumar return'
</h3>
<p>Updated on Jun 17, 2022 08:50 AM IST</p>
<img
id="secondmodi1"
src="https://images.hindustantimes.com/img/2022/06/16/148x111/iyer-pant-kishan_1655299036439_1655413844074.jpg"
/>
</div>
<div id="secondmodi">
<h3 style="color: teal; font-weight: bold">CRICKET</h3>
<h3 style="width: 60%">
'Very few wicketkeepers can do what Dinesh Karthik does'
</h3>
<p>Published on Jun 17, 2022 09:48 AM IST</p>
<img
id="secondmodi1"
src="https://images.hindustantimes.com/img/2022/06/17/148x111/PTI06-12-2022-000157B-0_1655438861755_1655438907031.jpg"
/>
</div>
<button
style="
padding: 10px 45px 10px 45px;
background-color: teal;
color: white;
font-weight: bolder;
border-radius: 5px;
margin-left: 37%;
margin-top: 15px;
"
>
VIEW ALL
</button>
<br />
<br />
<br />
<div id="midadbox">
<p style="padding: center">Advertisement</p>
</div>
<br />
<br />
<div id="modibox">
<h1 id="midheadings"><span>[</span>TRENDING<span>]</span></h1>
<h3 style="color: teal; font-weight: bold">TRENDING</h3>
<h1 style="font-size: x-large; width: 100%">
Video shows how differently this cat and dog friends approach each other
</h1>
<img
style="border-radius: 7px; width: 100%"
src="https://images.hindustantimes.com/img/2022/06/17/550x309/cat_dog_video_viral_Instagram_1655455653516_1655455663315.PNG"
alt="error"
/>
<p>Published on Jun 17, 2022 02:29PM IST</p>
<img
id="share"
src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRSjW9U4VceErj7S76msNUAkXZHBU7EHuFiDg&usqp=CAU"
alt="error"
/>
<img
id="bookmark"
src="https://www.pxpng.com/public/uploads/preview/-11608565643y2ec8jdhc7.png"
alt="error"
/>
</div>
<div id="secondmodi">
<h3 style="color: teal; font-weight: bold">TRENDING</h3>
<h3 style="width: 60%">
Twitter flooded with reactions as Delhi witnessed downpour
</h3>
<p>Published on Jun 17, 2022 12:55 PM IST</p>
<img
id="secondmodi1"
src="https://images.hindustantimes.com/img/2022/06/17/148x111/Delhi-rains-twitter_1655448919267_1655448934950.jpg"
/>
</div>
<div id="secondmodi">
<h3 style="color: teal; font-weight: bold">TRENDING</h3>
<h3 style="width: 60%">
Flight attendant proposes to her pilot girlfriend in special
Pride-themed plane
</h3>
<p>Published on Jun 17, 2022 12:55 PM IST</p>
<img
id="secondmodi1"
src="https://images.hindustantimes.com/img/2022/06/17/148x111/Pilot_Flight_Attendant_YouTube_Price_Video_Viral_1655448289579_1655448297181.PNG"
/>
</div>
<div id="secondmodi">
<h3 style="color: teal; font-weight: bold">TRENDING</h3>
<h3 style="width: 60%">
Dog falls asleep on woman's back while she is doing yoga. Watch cute
video
</h3>
<p>Published on Jun 17, 2022 12:27 PM IST</p>
<img
id="secondmodi1"
src="https://images.hindustantimes.com/img/2022/06/17/148x111/Dog_falls_asleep_on_woman%E2%80%99s_back_while_she_is_doing_yoga_1655448901592_1655448918431.jpg"
/>
</div>
<button
style="
padding: 10px 45px 10px 45px;
background-color: teal;
color: white;
font-weight: bolder;
border-radius: 5px;
margin-left: 37%;
margin-top: 15px;
"
>
VIEW ALL
</button>
<br />
<br />
<br />
<div id="midadbox">
<p style="padding: auto">Advertisement</p>
</div>
<br />
<br />
<div id="modibox">
<h1 id="midheadings"><span>[</span>RECOMMENDED<span>]</span></h1>
<h3 style="color: teal; font-weight: bold">CITIES</h3>
<h1 style="font-size: x-large; width: 100%">
Class 1 student tied with rope by mother, left on terrace for not doing
homework
</h1>
<img
style="border-radius: 7px; width: 100%"
src="https://images.hindustantimes.com/img/2022/06/08/550x309/e45c5226-e743-11ec-81b3-e8e05a65fdbf_1654704079581.jpg"
alt="error"
/>
<p>Published on Jun 08, 2022 09:31PM IST</p>
<img
id="share"
src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRSjW9U4VceErj7S76msNUAkXZHBU7EHuFiDg&usqp=CAU"
alt="error"
/>
<img
id="bookmark"
src="https://www.pxpng.com/public/uploads/preview/-11608565643y2ec8jdhc7.png"
alt="error"
/>
</div>
<div id="secondmodi">
<h3 style="color: teal; font-weight: bold">INDIA NEWS</h3>
<h3 style="width: 60%">
Lawrence Bishnoi planned murder of Moosewala: Delhi police
</h3>
<p>Published on Jun 09, 2022 12:09 PM IST</p>
<img
id="secondmodi1"
src="https://images.hindustantimes.com/img/2022/06/08/150x84/c1e174f4-e759-11ec-8e42-ddb1bac7707a_1654713560475.jpg"
/>
</div>
<div id="secondmodi">
<h3 style="color: teal; font-weight: bold">ENTERTAINMENT</h3>
<h3 style="width: 60%">
Mailaika Arora recalls son Arhaan Khan 'was howling on phone' after her
road accident: 'He was worried and in shock'
</h3>
<p>Published on Jun 08, 2022 10:42 PM IST</p>
<img
id="secondmodi1"
src="https://images.hindustantimes.com/img/2022/06/08/150x84/malaikaarora11629180903_1652779822258_1654706309496.webp"
/>
</div>
<div id="secondmodi">
<h3 style="color: teal; font-weight: bold">VIDEOS</h3>
<h3 style="width: 60%">
Delhi cop beaten by two including woman after faceoff over bike challan
| Watch
</h3>
<p>Published on Jun 08, 2022 10:42 PM IST</p>
<img
id="secondmodi1"
src="https://images.hindustantimes.com/img/2022/06/08/150x84/HT_Normal_Thumbnail_-_AUG__2021_-_2022-06-08T204915.660_1654701824285_1654701833926.jpg"
/>
</div>
<div id="secondmodi">
<h3 style="color: teal; font-weight: bold">INDIA NEWS</h3>
<h3 style="width: 60%">
Salman khan threat case : Gangster Lawrence Bishnoi blames former
associates
</h3>
<p>Published on Jun 08, 2022 08:22 PM IST</p>
<img
id="secondmodi1"
src="https://images.hindustantimes.com/img/2022/06/08/150x84/da42e200-e739-11ec-81b3-e8e05a65fdbf_1654699939205.jpg"
/>
</div>
<button
style="
padding: 10px 45px 10px 45px;
background-color: teal;
color: white;
font-weight: bolder;
border-radius: 5px;
margin-left: 37%;
margin-top: 15px;
"
>
VIEW ALL
</button>
<br />
<br />
<br />
<div id="midadbox">
<p style="padding: auto">Advertisement</p>
</div>
<br />
<br />
<h1 style="color: teal; width: 100%; position: relative; top: 4%">
WEBSTORIES
</h1>
<h3 style="position: relative; top: 1%; left: 70%; width: 100%">
VIEW ALL
</h3>
<p style="position: relative; top: 1%; left: 70%; width: 100%">
< >
</p>
<div style="display: flex">
<div>
<img
style="
width: 100%;
margin-right: 5px;
cursor: pointer;
border-radius: 7px;
"
src="https://images1.livehindustan.com/uploadimage/library/2022/06/17/4_3/9_16_2/tips_to_take_care_of_eyes_in_summer_1655449198.jpeg"
/>
</div>
<div>
<img
style="
width: 100%;
margin-right: 5px;
cursor: pointer;
border-radius: 7px;
"
src="https://images1.livehindustan.com/uploadimage/library/2022/06/17/4_3/9_16_2/benefits_of_mint_for_skin_and_hair_1655444222.jpeg"
alt=""
/>
</div>
<div>
<img
style="
width: 100%;
margin-right: 5px;
cursor: pointer;
border-radius: 7px;
"
src="https://images1.livehindustan.com/uploadimage/library/2022/06/16/4_3/9_16_2/hailey_bieber_s_cool_summer_outfits_1655379512.jpg"
alt=""
/>
</div>
</div>
<br />
<br />
<div id="midadbox">
<p style="padding: auto">Advertisement</p>
</div>
<br />
<br />
<div id="modibox">
<h1 id="midheadings"><span>[</span>OTT PLAY<span>]</span></h1>
<h1 style="font-size: x-large; width: 100%">
HIT - The First CAse teaser: Rajkummar Rao, Sanya Malhotra's twisted
crime-thriller seems promising
</h1>
<img
style="border-radius: 7px; width: 100%"
src="https://images.ottplay.com/images/hit-296.jpeg"
alt="error"
/>
<p>Published on Jun 17, 2022 01:52 PM IST</p>
<img
id="share"
src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRSjW9U4VceErj7S76msNUAkXZHBU7EHuFiDg&usqp=CAU"
alt="error"
/>
<img
id="bookmark"
src="https://www.pxpng.com/public/uploads/preview/-11608565643y2ec8jdhc7.png"
alt="error"
/>
</div>
<div id="secondmodi">
<h3 style="width: 60%">
Meet the doppelganger of Game of Thrones ' Tyrion Lannister from Kashmir
</h3>
<p>Published on Jun 17, 2022 01:45 PM IST</p>
<img
style="
position: relative;
width: 25%;
bottom: 125px;
left: 67%;
border-radius: 4px;
"
src="https://images.ottplay.com/images/tariq-mir-799.jpg"
/>
</div>
<div id="secondmodi">
<h3 style="width: 60%">
Latest Tamil movies, series streaming on OTT in 2022 - Netflix. Prime
Video, ZEE5, Hotstar, SonyLiv and aha
</h3>
<p>Published on Jun 17, 2022 01:19 PM IST</p>
<img
style="
position: relative;
width: 25%;
bottom: 125px;
left: 67%;
border-radius: 4px;
"
src="https://images.ottplay.com/images/latest-tamil-ott-releases-809.jpg"
/>
</div>
<div id="secondmodi">
<h3 style="width: 60%">
Alia Bhatt shares selfie after 'another great day' at set of Heart of
Stone; also expresses gratitude for response to Brahmastra trailer
</h3>
<p>Published on Jun 17, 2022 01:02 PM IST</p>
<img
style="
position: relative;
width: 25%;
bottom: 125px;
left: 67%;
border-radius: 4px;
"
src="https://images.ottplay.com/images/ab-782.jpg"
/>
</div>
<div id="secondmodi">
<h3 style="width: 60%">
Bhool Bhulaiyaa 2 on Netflix: Kartik Aaryan, Kiara Advani and Tabu
starrer to arrive on OTT on THIS date
</h3>
<p>Published on Jun 17, 2022 01:02 PM IST</p>
<img
style="
position: relative;
width: 25%;
bottom: 125px;
left: 67%;
border-radius: 4px;
"
src="https://images.ottplay.com/images/bb2ka-617.jpeg"
/>
</div>
<br />
<br />
<button
style="
padding: 10px 45px 10px 45px;
background-color: teal;
color: white;
font-weight: bolder;
border-radius: 5px;
margin-left: 37%;
margin-top: auto;
"
>
VIEW ALL
</button>
<br />
<br />
<br />
<div id="midadbox">
<p style="padding: auto">Advertisement</p>
</div>
</div>
<div id="rightbox">
<div id="adbox">
<p style="padding: auto">Advertisement</p>
</div>
<br />
<div id="rightboximage">
<h3 id="rightheadings"><span>[</span>IN PICS<span>]</span></h3>
<h3>Many benefits of exercise for your brain</h3>
<img
id="rightimage1"
src="https://images.hindustantimes.com/img/2022/06/14/550x309/exercise_thumb_1655220811929_1655220822001.jpg"
alt="error"
/>
<h3
style="
width: 65%;
font-size: medium;
margin-bottom: 0;
margin-top: 17px;
"
>
Incredible health benefits of moringa or drumstick as per Ayurveda
</h3>
<img
id="rightimage2"
src="https://images.hindustantimes.com/img/2022/06/14/148x111/drumstick_1_1655219312836_1655219348378.jpg"
alt="error"
/>
<h3
style="width: 65%; font-size: medium; margin-bottom: 0; margin-top: 0"
>
Kajal Aggarwal is perfect off-duty fashion inspo in relaxed fit shirt,
jeans
</h3>
<img
id="rightimage2"
src="https://images.hindustantimes.com/img/2022/06/14/148x111/Kajal_Aggarwal_wearing_Payal_Khandwala_(1)_1655201560043_1655201647292.jpeg"
alt="error"
/>
<h3
style="width: 65%; font-size: medium; margin-bottom: 0; margin-top: 0"
>
Bhumi Padnekar's summer outfit has a historical twist
</h3>
<img
id="rightimage2"
src="https://images.hindustantimes.com/img/2022/06/14/148x111/BeFunky-collage_(20)_1655201447009_1655201478874.jpg"
alt="error"
/>
<h3 style="width: 65%; font-size: medium; margin-top: 0">
When in Abu Dhabi, deck up like Hina Khan
</h3>
<img
id="rightimage2"
src="https://images.hindustantimes.com/img/2022/06/14/148x111/BeFunky-collage_(13)_1655196871186_1655196885299.jpg"
alt="error"
/>
<hr />
<button>View All ></button>
</div>
<br />
<div id="adbox">
<p style="padding: auto">Advertisement</p>
</div>
<br />
<div id="rightimage">
<h3 id="rightheadings2"><span>[</span>SHOP NOW<span>]</span></h3>
<br />
<div id="shoptags">
<div id="bestdeals">Best Deals</div>
<div id="electronics">Electronics</div>
<div id="fashion">Fashion</div>
<div id="beauty">Beauty</div>
</div>
</div>
<br />
<div id="adbox">
<p style="padding: auto">Advertisement</p>
</div>
<br />
<div id="rightboximage3">
<h3 id="rightheadings3"><span>[</span>MUST WATCH<span>]</span></h3>
<h3>
Mamata meets Sharad Pawar in Delhi after he refuses to run for President
</h3>
<img
id="rightimage1"
src="https://images.hindustantimes.com/img/2022/06/14/550x309/HT_Normal_Thumbnail_-_AUG__2021_1655218465862_1655218476881.jpg"
alt="error"
/>
<h3 style="width: 65%; font-size: medium">
Putin accused of using banned cluster bombs; Amnesty claims proof of war
crimes
</h3>
<img
id="rightimage2"
src="https://images.hindustantimes.com/img/2022/06/14/148x111/1920x1080_THUMBNAILjkgjgj_(21)_1655214430879_1655214450902.jpg"
alt="error"
/>
<h3
style="width: 65%; font-size: medium; margin-bottom: 0; margin-top: 0"
>
India to get new Chief of Defend=se Staff; Here's what Rajnath Singh
said
</h3>
<img
id="rightimage2"
src="https://images.hindustantimes.com/img/2022/06/14/148x111/HT_Normal_Thumbnail_-_AUG__2021_-_2022-06-14T183312.241_1655212210651_1655212223496.jpg"
alt="error"
/>
<h3 style="width: 65%; font-size: medium">
Meme fest erupts on social media as Microsoft's Internet Explorer is
retiring
</h3>
<img
id="rightimage2"
src="https://images.hindustantimes.com/img/2022/06/14/148x111/HT_Normal_Thumbnail_-_AUG__2021_(8)_1655208942707_1655209001346.jpg"
alt="error"
/>
<h3 style="width: 65%; font-size: medium; margin-top: 0">
Agnipath: Mega reform for armed forces; For younger, future ready
soldiers
</h3>
<img
id="rightimage2"
src="https://images.hindustantimes.com/img/2022/06/14/148x111/1920x1080_THUMBNAILjkgjgj_1655208526386_1655208534997.jpg"
alt="error"
/>
<hr />
<button>View All ></button>
</div>
<br />
<div id="adbox">
<p style="padding: auto">Advertisement</p>
</div>
<br />
<div id="rightboximage4">
<h3 id="rightheadings4"><span>[</span>ITS VIRAL<span>]</span></h3>
<h3>
Gentle golden retriever spends time with butterfly. Watch adorable video
</h3>
<img
id="rightimage1"
src="https://images.hindustantimes.com/img/2022/06/15/550x309/Gentle_golden_retriever_spends_time_with_butterfly_1655263076020_1655263099993.png"
alt="error"
/>
<h3
style="
width: 65%;
font-size: medium;
margin-bottom: 0;
margin-top: 17px;
"
>
Rescued puppy's reaction to having its first bath is heart-warming.
Watch
</h3>
<img
id="rightimage2"
src="https://images.hindustantimes.com/img/2022/06/15/148x111/Rescued_puppy_reaction_to_having_its_first_birth_1655261398445_1655261431267.png"
alt="error"
/>
<h3 style="width: 65%; font-size: medium">
Dog loves The Lion King so much that his human got him a Simba toy.
Watch
</h3>
<img
id="rightimage2"
src="https://images.hindustantimes.com/img/2022/06/14/148x111/Dog_loves_The_Lion_King_so_much_that_its_human_got_him_a_Simba_toy_1655218827633_1655218839159.jpg"
/>
<h3 style="width: 65%; font-size: medium">
This 'passenger' in car chased by police faced no charges. Its an
aliigator
</h3>
<img
id="rightimage2"
src="https://images.hindustantimes.com/img/2022/06/14/148x111/Facebook_Police_Passenger_Alligator_1655217461731_1655217524278.PNG"
alt="error"