forked from gitsid1611/FirstPost-Clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1360 lines (1318 loc) · 79.7 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
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>LIVE updates, Latest News, Breaking News, Bollywood, Business and Political News – Firstpostv</title>
<link rel="icon" href="https://www.firstpost.com/static/images/favicon.ico?v=6.75" type="image/x">
<link rel="stylesheet" href="./navbar.css">
<link rel="icon" type="image/x-icon" href="https://www.firstpost.com/static/images/favicon.ico?v=6.75">
<script src="https://kit.fontawesome.com/c7bc59b759.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="home.css">
</head>
<body>
<div id="navbar">
</div>
<div id="main">
<div class="addup">
<a
href="https://googleads.g.doubleclick.net/pcs/click?xai=AKAOjsuTGYrTSrAkJIn3PnQTOJhcEDZoK9BKtlxT6vvXj6OLUoW4nZG2w5NSBiXl56UL1yNSzN3n5osqd7jtvjQmkt1h4MnDGMgNnu_yffKBSngZ5VBeXAfiWdLwiL8QxJB-13EaqKdeXAScOwzUarOO6O27kfrMKeix0o9ZOIoz5coyHPt4E6GPLj509EYPBSeV4TGNAWss6xSmhtJQ5Y446JpPmI3LGB_HmAGVKreoc8WxDYTEu9DjJtXrp4kBFdZZZH2Rs60tu6KDzkv4jazvOeSKiVNCpNPGxh70pvuFzTL037EECUXDYUn5AMRPF7g1Kprx6JEs65G04pbe-zne8RbPuLTU8yJZNCDGxKAbzn7ow-U0cas7XucdeEK-_ea5_w&sai=AMfl-YSR0l4aVdBfAztng-5zm7m6Bgl--GYMOhx91S-uBhQvR6QIjO7KKd_hq6E09h2Nhs8t5yVpJ1eD5cS7&sig=Cg0ArKJSzKNLD4NIHIF6&fbs_aeid=[gw_fbsaeid]&adurl=https://www.youtube.com/watch%3Fv%3D5PysNGsS6X4&nm=9&nx=372&ny=-19&mb=2&clkt=90">
<img src="/12545784389913602894.jpg" alt="">
</a>
</div>
<div id="content">
<!-- /Left Div/ ------------------------------------------>
<div id="left">
<div class="head">
<h2> THE BIG
STORY </h2>
</div>
<!-- Slideshow container -->
<div class="slideshow-container">
<div class="mySlides fade">
<a
href="https://www.firstpost.com/india/hows-the-josh-why-centres-new-agnipath-recruitment-programme-for-soldiers-is-considered-revolutionary-10792361.html">
<img src="https://images.firstpost.com/wp-content/uploads/fpranking/1655195993471.jpg">
<div id="newsboxcontentup">
<div
style="display: flex; justify-content: space-between;padding: 10px;margin-bottom: -30px;">
<p id="grey"
style="text-decoration:underline rgb(204, 162, 63) ;border-bottom: 2px soild rgb(204, 162, 63);">
INDIA</p>
</a>
<div class="dropup">
<button class="dropbtn"><img src="https://cdn-icons-png.flaticon.com/512/18/18672.png"
alt=""></button>
<div class="dropup-content">
<a href="https://www.facebook.com/"><img
src="https://seeklogo.com/images/F/facebook-icon-circle-logo-09F32F61FF-seeklogo.com.png"
alt=""></a>
<a href="https://twitter.com/"><img
src="https://www.pngkey.com/png/full/2-27646_twitter-logo-png-transparent-background-logo-twitter-png.png"
alt=""></a>
<a href="https://web.whatsapp.com/"><img
src="https://upload.wikimedia.org/wikipedia/commons/thumb/6/6b/WhatsApp.svg/479px-WhatsApp.svg.png"
alt=""></a>
<a href="https://mail.google.com/"><img
src="https://i.pinimg.com/564x/f6/cd/65/f6cd6544ef6c35f5e1acc3a347755222.jpg"
alt=""></a>
</div>
</div>
</div>
<div>
<h2 class="fixh2">
How's the josh? Why Centre's new Agnipath recruitment programme for soldiers is
considered revolutionary
</h2>
</div>
</div>
</div>
<div class="mySlides fade">
<a
href="https://www.firstpost.com/world/explained-how-russia-earned-98-billion-from-fuel-exports-in-first-100-days-of-ukraine-war-10793401.html">
<img src="https://images.firstpost.com/wp-content/uploads/fpranking/1655207722390.jpg">
<div id="newsboxcontentup">
<div style="display: flex; justify-content: space-between;padding: 10px;margin-bottom: -30px;">
<p id="grey" style="text-decoration:underline rgb(204, 162, 63) ;">WORLD</p>
</a>
<div class="dropup">
<button class="dropbtn"><img src="https://cdn-icons-png.flaticon.com/512/18/18672.png"
alt=""></button>
<div class="dropup-content">
<a href="https://www.facebook.com/"><img
src="https://seeklogo.com/images/F/facebook-icon-circle-logo-09F32F61FF-seeklogo.com.png"
alt=""></a>
<a href="https://twitter.com/"><img
src="https://www.pngkey.com/png/full/2-27646_twitter-logo-png-transparent-background-logo-twitter-png.png"
alt=""></a>
<a href="https://web.whatsapp.com/"><img
src="https://upload.wikimedia.org/wikipedia/commons/thumb/6/6b/WhatsApp.svg/479px-WhatsApp.svg.png"
alt=""></a>
<a href="https://mail.google.com/"><img
src="https://i.pinimg.com/564x/f6/cd/65/f6cd6544ef6c35f5e1acc3a347755222.jpg"
alt=""></a>
</div>
</div>
</div>
<div>
<h2 class="fixh2">Explained : How Russia earned $98 billion from fuel exports in first 100 days of
Ukraine war</h2>
</div>
</div>
</div>
<div class="mySlides fade">
<a
href="https://www.firstpost.com/india/explained-how-air-pollution-is-cutting-life-by-10-years-in-delhi-10793351.html">
<img
src="https://images.firstpost.com/wp-content/uploads/2022/06/air1.jpg?impolicy=website&width=640&height=363">
<div id="newsboxcontentup">
<div style="display: flex; justify-content: space-between;padding: 10px;margin-bottom: -30px;">
<p id="grey" style="text-decoration:underline rgb(204, 162, 63) ;">OPINION</p>
</a>
<div class="dropup">
<button class="dropbtn"><img src="https://cdn-icons-png.flaticon.com/512/18/18672.png" alt=""></button>
<div class="dropup-content">
<a href="https://www.facebook.com/"><img
src="https://seeklogo.com/images/F/facebook-icon-circle-logo-09F32F61FF-seeklogo.com.png"
alt=""></a>
<a href="https://twitter.com/"><img
src="https://www.pngkey.com/png/full/2-27646_twitter-logo-png-transparent-background-logo-twitter-png.png"
alt=""></a>
<a href="https://web.whatsapp.com/"><img
src="https://upload.wikimedia.org/wikipedia/commons/thumb/6/6b/WhatsApp.svg/479px-WhatsApp.svg.png"
alt=""></a>
<a href="https://mail.google.com/"><img
src="https://i.pinimg.com/564x/f6/cd/65/f6cd6544ef6c35f5e1acc3a347755222.jpg" alt=""></a>
</div>
</div>
</div>
<div>
<h2 class="fixh2">Explained: How air pollution is cutting life by 10 years in Delhi</h2>
</div>
</div>
</div>
<div class="mySlides fade"><a
href="https://www.firstpost.com/opinion/the-state-cannot-let-itself-be-bullied-bulldozers-raise-cost-of-participating-in-street-violence-10792291.html">
<img
src="https://images.firstpost.com/wp-content/uploads/2022/06/Bulldozer-demolishes-construction-of-the-Kanpur-violence-chief.jpg?impolicy=website&width=640&height=363">
<div id="newsboxcontentup">
<div style="display: flex; justify-content: space-between;padding: 10px;margin-bottom: -30px;">
<p id="grey" style="text-decoration:underline rgb(204, 162, 63) ;">SPORTS</p>
</a>
<div class="dropup">
<button class="dropbtn"><img src="https://cdn-icons-png.flaticon.com/512/18/18672.png" alt=""></button>
<div class="dropup-content">
<a href="https://www.facebook.com/"><img
src="https://seeklogo.com/images/F/facebook-icon-circle-logo-09F32F61FF-seeklogo.com.png"
alt=""></a>
<a href="https://twitter.com/"><img
src="https://www.pngkey.com/png/full/2-27646_twitter-logo-png-transparent-background-logo-twitter-png.png"
alt=""></a>
<a href="https://web.whatsapp.com/"><img
src="https://upload.wikimedia.org/wikipedia/commons/thumb/6/6b/WhatsApp.svg/479px-WhatsApp.svg.png"
alt=""></a>
<a href="https://mail.google.com/"><img
src="https://i.pinimg.com/564x/f6/cd/65/f6cd6544ef6c35f5e1acc3a347755222.jpg" alt=""></a>
</div>
</div>
</div>
<div>
<h2 class="fixh2">The state cannot let itself be bullied: Bulldozers raise cost of participating in
street violence</h2>
</div>
</div>
</div>
<div class="mySlides fade"><a
href="https://www.firstpost.com/sports/neeraj-chopra-returns-to-action-in-highly-competitive-field-at-paavo-nurmi-games-10793451.html">
<img src="https://images.firstpost.com/wp-content/uploads/fpranking/1655207330221.jpg">
<div id="newsboxcontentup">
<div style="display: flex; justify-content: space-between;padding: 10px;margin-bottom: -30px;">
<p id="grey" style="text-decoration:underline text-decoration:underline ;">SPORTS</p>
</a>
<div class="dropup">
<button class="dropbtn"><img src="https://cdn-icons-png.flaticon.com/512/18/18672.png" alt=""></button>
<div class="dropup-content">
<a href="https://www.facebook.com/"><img
src="https://seeklogo.com/images/F/facebook-icon-circle-logo-09F32F61FF-seeklogo.com.png"
alt=""></a>
<a href="https://twitter.com/"><img
src="https://www.pngkey.com/png/full/2-27646_twitter-logo-png-transparent-background-logo-twitter-png.png"
alt=""></a>
<a href="https://web.whatsapp.com/"><img
src="https://upload.wikimedia.org/wikipedia/commons/thumb/6/6b/WhatsApp.svg/479px-WhatsApp.svg.png"
alt=""></a>
<a href="https://mail.google.com/"><img
src="https://i.pinimg.com/564x/f6/cd/65/f6cd6544ef6c35f5e1acc3a347755222.jpg" alt=""></a>
</div>
</div>
</div>
<div >
<h2 class="fixh2">Neeraj Chopra returns to action in highly-competitive field at Paavo Nurmi Games
</h2>
</div>
</div>
</div>
</div>
<br>
<!-- The rectangle/ -->
<div style="text-align:center">
<span class="rectangle" onclick="currentSlide(1)"></span>
<span class="rectangle" onclick="currentSlide(2)"></span>
<span class="rectangle" onclick="currentSlide(3)"></span>
<span class="rectangle" onclick="currentSlide(4)"></span>
<span class="rectangle" onclick="currentSlide(5)"></span>
</div>
<div id="newsbox">
<a href="https://www.firstpost.com/india/pm-modis-two-mega-gifts-to-youth-in-a-single-day-10792511.html">
<div>
<img src="https://images.firstpost.com/wp-content/uploads/2022/06/PM-in-Gujarat1.jpg?impolicy=website&width=640&height=362"
alt="">
</div>
<div id="newsboxcontent">
<div style="display: flex; justify-content: space-between;padding: 10px;margin-bottom: -30px;">
<p id="grey" style="text-decoration:underline #fad65f;">India</p>
</a>
<div class="dropup">
<button class="dropbtn"><img src="https://cdn-icons-png.flaticon.com/512/18/18672.png" alt=""></button>
<div class="dropup-content">
<a href="https://www.facebook.com/"><img
src="https://seeklogo.com/images/F/facebook-icon-circle-logo-09F32F61FF-seeklogo.com.png"
alt=""></a>
<a href="https://twitter.com/"><img
src="https://www.pngkey.com/png/full/2-27646_twitter-logo-png-transparent-background-logo-twitter-png.png"
alt=""></a>
<a href="https://web.whatsapp.com/"><img
src="https://upload.wikimedia.org/wikipedia/commons/thumb/6/6b/WhatsApp.svg/479px-WhatsApp.svg.png"
alt=""></a>
<a href="https://mail.google.com/"><img
src="https://i.pinimg.com/564x/f6/cd/65/f6cd6544ef6c35f5e1acc3a347755222.jpg" alt=""></a>
</div>
</div>
</div>
<div>
<h2>PM Modi’s two mega gifts to youth in a single day</h2>
<p>From launching the Agnipath recruitment scheme to giving a target to all departments and
ministries to employ 10 lakh people in the next 1.5 years, PM Modi's two big decisions
today will benefit the youth</p>
</div>
</div>
</div>
<div id="newsbox">
<a
href="https://www.firstpost.com/firstcricket/sports-news/ipl-media-rights-futuristic-digital-drives-indian-premier-league-into-realms-of-sci-fi-10795641.html">
<img src="https://images.firstpost.com/wp-content/uploads/2022/06/ipl-trophy.jpg?impolicy=website&width=640&height=362"
alt="">
<div id="newsboxcontent">
<div style="display: flex; justify-content: space-between;padding: 10px;margin-bottom: -30px;">
<p id="grey" style="text-decoration:underline rgb(204, 162, 63) ;">FIRSTCRICKET</p>
</a>
<div class="dropup">
<button class="dropbtn"><img src="https://cdn-icons-png.flaticon.com/512/18/18672.png" alt=""></button>
<div class="dropup-content">
<a href="https://www.facebook.com/"><img
src="https://seeklogo.com/images/F/facebook-icon-circle-logo-09F32F61FF-seeklogo.com.png"
alt=""></a>
<a href="https://twitter.com/"><img
src="https://www.pngkey.com/png/full/2-27646_twitter-logo-png-transparent-background-logo-twitter-png.png"
alt=""></a>
<a href="https://web.whatsapp.com/"><img
src="https://upload.wikimedia.org/wikipedia/commons/thumb/6/6b/WhatsApp.svg/479px-WhatsApp.svg.png"
alt=""></a>
<a href="https://mail.google.com/"><img
src="https://i.pinimg.com/564x/f6/cd/65/f6cd6544ef6c35f5e1acc3a347755222.jpg" alt=""></a>
</div>
</div>
</div>
<div>
<h2>IPL media rights: Futuristic Digital drives Indian Premier League into realms of
Sci-Fi</h2>
<p>Augmented Viewing of Cricket is a reality as Media Rights Auction reveals</p>
</div>
</div>
</div>
<div id="newsbox">
<a
href="https://www.firstpost.com/politics/aadityas-moment-in-the-sun-how-ayodhya-visit-marks-coming-of-age-for-thackeray-scion-10795341.html">
<img src="https://images.firstpost.com/wp-content/uploads/2022/06/aaditya2.jpg?impolicy=website&width=640&height=362"
alt="">
<div id="newsboxcontent">
<div style="display: flex; justify-content: space-between;padding: 10px;margin-bottom: -30px;">
<p id="grey" style="text-decoration:underline rgb(204, 162, 63) ;">POLITICS</p>
</a>
<div class="dropup">
<button class="dropbtn"><img src="https://cdn-icons-png.flaticon.com/512/18/18672.png" alt=""></button>
<div class="dropup-content">
<a href="https://www.facebook.com/"><img
src="https://seeklogo.com/images/F/facebook-icon-circle-logo-09F32F61FF-seeklogo.com.png"
alt=""></a>
<a href="https://twitter.com/"><img
src="https://www.pngkey.com/png/full/2-27646_twitter-logo-png-transparent-background-logo-twitter-png.png"
alt=""></a>
<a href="https://web.whatsapp.com/"><img
src="https://upload.wikimedia.org/wikipedia/commons/thumb/6/6b/WhatsApp.svg/479px-WhatsApp.svg.png"
alt=""></a>
<a href="https://mail.google.com/"><img
src="https://i.pinimg.com/564x/f6/cd/65/f6cd6544ef6c35f5e1acc3a347755222.jpg" alt=""></a>
</div>
</div>
</div>
<div>
<h2>Aaditya’s moment in the sun: How Ayodhya visit marks coming of age for Thackeray scion</h2>
<p>Aaditya Thackeray will be in Ayodhya for a day-long trip, which will see him doing a darshan and an aarti at
River Sarayu. The timing of the visit is significant, as it comes ahead of the Mumbai civic body polls and
amid the attack on Shiv Sena over the Hindutva issue</p>
</div>
</div>
</div>
<div id="newsbox">
<a
href="https://www.firstpost.com/politics/national-herald-case-enforcement-directorate-asks-rahul-gandhi-to-rejoin-probe-for-third-consecutive-day-10795661.html">
<img src="https://images.firstpost.com/wp-content/uploads/2022/06/Rahul-Gandhi-1.jpg?impolicy=website&width=640&height=362"
alt="">
<div id="newsboxcontent">
<div style="display: flex; justify-content: space-between;padding: 10px;margin-bottom: -30px;">
<p id="grey" style="text-decoration:underline rgb(204, 162, 63) ;">POLITICS</p>
</a>
<div class="dropup">
<button class="dropbtn"><img src="https://cdn-icons-png.flaticon.com/512/18/18672.png" alt=""></button>
<div class="dropup-content">
<a href="https://www.facebook.com/"><img
src="https://seeklogo.com/images/F/facebook-icon-circle-logo-09F32F61FF-seeklogo.com.png"
alt=""></a>
<a href="https://twitter.com/"><img
src="https://www.pngkey.com/png/full/2-27646_twitter-logo-png-transparent-background-logo-twitter-png.png"
alt=""></a>
<a href="https://web.whatsapp.com/"><img
src="https://upload.wikimedia.org/wikipedia/commons/thumb/6/6b/WhatsApp.svg/479px-WhatsApp.svg.png"
alt=""></a>
<a href="https://mail.google.com/"><img
src="https://i.pinimg.com/564x/f6/cd/65/f6cd6544ef6c35f5e1acc3a347755222.jpg" alt=""></a>
</div>
</div>
</div>
<div>
<h2>National Herald case: Enforcement Directorate asks Rahul Gandhi to rejoin probe for third
consecutive day </h2>
<p>Rahul Gandhi is being questioned in detail about the ownership of Young Indian Private Limited (YIL) by the
Gandhi family and its shareholding pattern in Associated Journals Limited (AJL), the company that runs the
National Herald newspaper</p>
</div>
</div>
</div>
<div id="newsbox"><a
href="https://www.firstpost.com/india/sidhu-moose-wala-murder-case-understanding-transit-remand-that-allowed-transfer-of-lawrence-bishnoi-to-punjab-10796321.html">
<img src="https://images.firstpost.com/wp-content/uploads/2022/06/bishnoi.jpg?impolicy=website&width=640&height=363"
alt="">
<div id="newsboxcontent">
<div style="display: flex; justify-content: space-between;padding: 10px;margin-bottom: -30px;">
<p id="grey" style="text-decoration:underline rgb(204, 162, 63) ;">INDIA</p>
</a>
<div class="dropup">
<button class="dropbtn"><img src="https://cdn-icons-png.flaticon.com/512/18/18672.png" alt=""></button>
<div class="dropup-content">
<a href="https://www.facebook.com/"><img
src="https://seeklogo.com/images/F/facebook-icon-circle-logo-09F32F61FF-seeklogo.com.png"
alt=""></a>
<a href="https://twitter.com/"><img
src="https://www.pngkey.com/png/full/2-27646_twitter-logo-png-transparent-background-logo-twitter-png.png"
alt=""></a>
<a href="https://web.whatsapp.com/"><img
src="https://upload.wikimedia.org/wikipedia/commons/thumb/6/6b/WhatsApp.svg/479px-WhatsApp.svg.png"
alt=""></a>
<a href="https://mail.google.com/"><img
src="https://i.pinimg.com/564x/f6/cd/65/f6cd6544ef6c35f5e1acc3a347755222.jpg" alt=""></a>
</div>
</div>
</div>
<div>
<h2>Sidhu Moose Wala murder case: Understanding transit remand that allowed transfer of Lawrence Bishnoi to
Punjab</h2>
<p>The primary purpose of a transit remand is to enable the police to shift the person in custody from the place
of arrest to the place where the matter can be investigated. In the Sidhu Moose Wala case, the cops wanted
to transfer Lawrence Bishnoi from Tihar jail to the state for further questioning</p>
</div>
</div>
</div>
<!-------------------------- TRENDING DIV starting From here ---------------------------->
<div>
<h1 style="text-align: center; margin-top:70px ; border-bottom: 2px solid grey;">TRENDINGS</h1>
<div id="minboxnews">
<div class="mbp">
<div><a
href="https://www.firstpost.com/firstcricket/sports-news/watch-jonny-bairstow-ben-stokes-help-england-smash-160-runs-in-16-overs-to-script-record-test-chase-10796471.html">
<img style="width: 130px;height:70px"
src="https://images.firstpost.com/wp-content/uploads/2022/06/StokesBairstow-min.jpg?impolicy=website&width=128&height=70"
alt="">
</div>
<div style="margin-top:-18px;">
<p id="grey2" style="text-decoration:underline rgb(204, 162, 63) ;">#FIRSTCRICKET</p></a>
<h4 style="margin-top:-8px">Watch: Jonny Bairstow-Ben Stokes help England smash 160 runs in 16 </h3>
</div>
</div>
<div class="mbp">
<div>
<a
href="https://www.firstpost.com/firstcricket/sports-news/former-india-cricketers-tweet-on-hardik-pandya-wins-twitter-10796071.html">
<img style="width: 130px;height:70px"
src="https://images.firstpost.com/wp-content/uploads/2022/06/HardikPandyaL.jpg?impolicy=website&width=640&height=363"
alt="">
</div>
<div style="margin-top:-18px;">
<p id="grey2" style="text-decoration:underline rgb(204, 162, 63) ;">#FIRSTCRICKET</p></a>
<h4 style="margin-top:-8px">Former India cricketer’s tweet on Hardik Pandya wins Twitter</h3>
</div>
</div>
</div>
<div id="minboxnews">
<div class="mbp">
<a
href="https://www.firstpost.com/education/jee-main-2022-session-1-exam-city-intimation-slip-released-at-jeemain-nta-nic-in-check-direct-link-10796061.html">
<div>
<img style="width: 130px;height:70px"
src="https://images.firstpost.com/wp-content/uploads/2022/02/exam-1.jpg?impolicy=website&width=640&height=363"
alt="">
</div>
<div style="margin-top:-18px;margin-left: 10px;">
<p id="grey2" style="text-decoration:underline rgb(204, 162, 63) ;">#EDUCATION</p>
</a>
<h4 style="margin-top:-8px">JEE Main 2022 Session 1: Exam city intimation slip released at
jeemain.nta.nic.in; check direct link</h3>
</div>
</div>
<div class="mbp">
<div><a
href="https://www.firstpost.com/entertainment/from-seetimaar-to-do-you-love-me-heres-a-look-at-disha-patanis-top-songs-playlist-10782151.html">
<img style="width: 130px;height:70px"
src="https://images.firstpost.com/wp-content/uploads/2022/06/pjimage-2022-06-15T123533.584.jpg?impolicy=website&width=640&height=363"
alt="">
</div>
<div style="margin-top:-18px;">
<p id="grey2" style="text-decoration:underline rgb(204, 162, 63) ;">#ENTERTAINMENT</p></a>
<h4 style="margin-top:-8px">From Seetimaar to Do You Love Me: Here's a look at Disha Patani's top songs
playlist</h3>
</div>
</div>
</div>
<div id="minboxnews">
<div class="mbp"><a
href="https://www.firstpost.com/india/kerala-lottery-2022-akshaya-ak-553-results-to-be-declared-at-3-pm-first-prize-rs-70-lakh-10795871.html">
<div>
<img style="width: 130px;height:70px"
src="https://images.firstpost.com/wp-content/uploads/2021/11/lottery-2.jpg?impolicy=website&width=640&height=363"
alt="">
</div>
<div style="margin-top:-18px;margin-left: 10px;">
<p id="grey2" style="text-decoration:underline rgb(204, 162, 63) ;">#INDIA</p>
</a>
<h4 style="margin-top:-8px">Kerala lottery 2022: Akshaya AK 553 results to be declared at 3 pm,first
prize Rs70 lakh</h3>
</div>
</div>
<div class="mbp">
<div><a
href="https://www.firstpost.com/education/nios-10th-12th-results-2022-announced-at-nios-ac-in-find-direct-link-here-10795981.html">
<img style="width: 130px;height:70px"
src="https://images.firstpost.com/wp-content/uploads/2022/05/exam-new-pic1.jpg?impolicy=website&width=640&height=363"
alt="">
</div>
<div style="margin-top:-18px;">
<p id="grey2" style="text-decoration:underline rgb(204, 162, 63) ;">#EDUCATION</p></a>
<h4 style="margin-top:-8px">NIOS 10th, 12th results 2022 announced at nios.ac.in, find direct link here</h3>
</div>
</div>
</div>
<div id="minboxnews">
<div class="mbp">
<div><a
href="https://www.firstpost.com/brands/interview-intuits-sundar-balasubramanian-talks-expansion-plans-and-how-indias-incredible-talent-pool-is-shaping-the-companys-future-10708401.html">
<img style="width: 130px;height:70px"
src="https://images.firstpost.com/wp-content/uploads/2022/05/640x320_1.jpg?impolicy=website&width=640&height=363"
alt="">
</div>
<div style="margin-top:-18px;">
<p id="grey2" style="text-decoration:underline rgb(204, 162, 63) ;">#BRANDS</p></a>
<h4 style="margin-top:-8px">Interview: Intuit’s Sundar Balasubramanian talks expansion plans and how
India’s </h3>
</div>
</div>
<div class="mbp">
<div><a
href="https://www.firstpost.com/brands/gambling-experts-pinpoints-the-new-indian-gaming-bills-pitfalls-10768271.html">
<img style="width: 130px;height:70px"
src="https://images.firstpost.com/wp-content/uploads/2022/06/640X320-px-1.jpg?impolicy=website&width=640&height=363"
alt="">
</div>
<div style="margin-top:-18px;">
<p id="grey2" style="text-decoration:underline rgb(204, 162, 63) ;">#BRANDS</p></a>
<h4 style="margin-top:-8px">Gambling EXPERTS pinpoints the new Indian gaming bill’s pitfalls</h3>
</div>
</div>
</div>
</div>
<!-- //////////////////////////////////////////////////////////////////////////////////////// -->
<div id="newsbox">
<a
href="https://www.firstpost.com/tech/news-analysis/apple-next-budget-ipad-to-come-with-a14-bionic-chip-5g-and-usb-c-10797051.html">
<img src="https://www.firstpost.com/wp-content/uploads/2022/06/Next-entry-level-budget-iPad-will-be-powered-by-an-A14-chip-and-have-5G-USB-C-connectivity-1.jpg"
alt="">
<div id="newsboxcontent">
<div style="display: flex; justify-content: space-between;padding: 10px;margin-bottom: -30px;">
<p id="grey" style="text-decoration:underline rgb(204, 162, 63) ;">TECH</p>
</a>
<div class="dropup">
<button class="dropbtn"><img src="https://cdn-icons-png.flaticon.com/512/18/18672.png" alt=""></button>
<div class="dropup-content">
<a href="https://www.facebook.com/"><img
src="https://seeklogo.com/images/F/facebook-icon-circle-logo-09F32F61FF-seeklogo.com.png"
alt=""></a>
<a href="https://twitter.com/"><img
src="https://www.pngkey.com/png/full/2-27646_twitter-logo-png-transparent-background-logo-twitter-png.png"
alt=""></a>
<a href="https://web.whatsapp.com/"><img
src="https://upload.wikimedia.org/wikipedia/commons/thumb/6/6b/WhatsApp.svg/479px-WhatsApp.svg.png"
alt=""></a>
<a href="https://mail.google.com/"><img
src="https://i.pinimg.com/564x/f6/cd/65/f6cd6544ef6c35f5e1acc3a347755222.jpg" alt=""></a>
</div>
</div>
</div>
<div>
<h2>NEXT ENTRY-LEVEL BUDGET IPAD WILL BE POWERED BY AN A14 CHIP, AND HAVE 5G, USB-C CONNECTIVITY</h2>
<p>Apple’s next budget-level iPad will come equipped with an A14 Bionic chip, will support 5G internet and will
come with a USB-C port instead of lightning. The new iPad may be unveiled with the iPhone 14 later this
year.</p>
</div>
</div>
</div>
<!-- -------------------------------------------- -->
<div id="newsbox">
<a href="https://www.firstpost.com/entertainment/adivi-sesh-on-major-the-legacy-of-major-sandeep-unnikrishnan-has-reached-every-heart-from-kashmir-to-kanyakumari-10797111.html"
alt="">
<img src="https://images.firstpost.com/wp-content/uploads/2022/06/major-live-updatges-1.jpg?impolicy=website&width=640&height=362"
alt="">
<div id="newsboxcontent">
<div style="display: flex; justify-content: space-between;padding: 10px;margin-bottom: -30px;">
<p id="grey" style="text-decoration:underline rgb(204, 162, 63) ;">ENTERTAINMENT</p>
</a>
<div class="dropup">
<button class="dropbtn"><img src="https://cdn-icons-png.flaticon.com/512/18/18672.png" alt=""></button>
<div class="dropup-content">
<a href="https://www.facebook.com/"><img
src="https://seeklogo.com/images/F/facebook-icon-circle-logo-09F32F61FF-seeklogo.com.png"
alt=""></a>
<a href="https://twitter.com/"><img
src="https://www.pngkey.com/png/full/2-27646_twitter-logo-png-transparent-background-logo-twitter-png.png"
alt=""></a>
<a href="https://web.whatsapp.com/"><img
src="https://upload.wikimedia.org/wikipedia/commons/thumb/6/6b/WhatsApp.svg/479px-WhatsApp.svg.png"
alt=""></a>
<a href="https://mail.google.com/"><img
src="https://i.pinimg.com/564x/f6/cd/65/f6cd6544ef6c35f5e1acc3a347755222.jpg" alt=""></a>
</div>
</div>
</div>
<div>
<h2>Adivi Sesh on Major: ‘The legacy of Major Sandeep Unnikrishnan has reached every heart from Kashmir to
Kanyakumari’</h2>
<p>On not being much of an OTT person, Adivi Sesh says, “What Bhangra is to Punjabis, movies are the same for
Telugus and I love watching movies in theatres.”</p>
</div>
</div>
</div>
<!-- -------------------------------------------- -->
<div id="newsbox">
<a
href="https://www.firstpost.com/firstcricket/sports-news/england-vs-new-zealand-hosts-docked-two-world-test-championship-points-for-slow-over-rate-in-second-test-10796951.html">
<img src="https://images.firstpost.com/wp-content/uploads/2022/06/England-cricket-640_AP.jpg?impolicy=website&width=640&height=362"
alt="">
<div id="newsboxcontent">
<div style="display: flex; justify-content: space-between;padding: 10px;margin-bottom: -30px;">
<p id="grey" style="text-decoration:underline rgb(204, 162, 63) ;">CRICKET</p>
</a>
<div class="dropup">
<button class="dropbtn"><img src="https://cdn-icons-png.flaticon.com/512/18/18672.png" alt=""></button>
<div class="dropup-content">
<a href="https://www.facebook.com/"><img
src="https://seeklogo.com/images/F/facebook-icon-circle-logo-09F32F61FF-seeklogo.com.png"
alt=""></a>
<a href="https://twitter.com/"><img
src="https://www.pngkey.com/png/full/2-27646_twitter-logo-png-transparent-background-logo-twitter-png.png"
alt=""></a>
<a href="https://web.whatsapp.com/"><img
src="https://upload.wikimedia.org/wikipedia/commons/thumb/6/6b/WhatsApp.svg/479px-WhatsApp.svg.png"
alt=""></a>
<a href="https://mail.google.com/"><img
src="https://i.pinimg.com/564x/f6/cd/65/f6cd6544ef6c35f5e1acc3a347755222.jpg" alt=""></a>
</div>
</div>
</div>
<div>
<h2>England vs New Zealand: Hosts docked two World Test Championship points for slow over-rate in second Test
</h2>
<p>Match referee Richie Richardson imposed the sanction after the home side were ruled to have been two overs
short of the target after time allowances were taken into consideration.</p>
</div>
</div>
</div>
<!-- -------------------------------------------- -->
<div id="newsbox">
<a
href="https://www.firstpost.com/south-indian-movies/makers-of-suzhal-the-vortex-express-their-excitement-as-the-series-gears-up-for-its-global-release-10796931.html">
<img src="https://images.firstpost.com/wp-content/uploads/2022/06/640-x-363-2022-06-15T152250.140.jpg?impolicy=website&width=640&height=362"
alt="">
<div id="newsboxcontent">
<div style="display: flex; justify-content: space-between;padding: 10px;margin-bottom: -30px;">
<p id="grey" style="text-decoration:underline rgb(204, 162, 63) ;">ENTERTAINMENT</p>
</a>
<div class="dropup">
<button class="dropbtn"><img src="https://cdn-icons-png.flaticon.com/512/18/18672.png" alt=""></button>
<div class="dropup-content">
<a href="https://www.facebook.com/"><img
src="https://seeklogo.com/images/F/facebook-icon-circle-logo-09F32F61FF-seeklogo.com.png"
alt=""></a>
<a href="https://twitter.com/"><img
src="https://www.pngkey.com/png/full/2-27646_twitter-logo-png-transparent-background-logo-twitter-png.png"
alt=""></a>
<a href="https://web.whatsapp.com/"><img
src="https://upload.wikimedia.org/wikipedia/commons/thumb/6/6b/WhatsApp.svg/479px-WhatsApp.svg.png"
alt=""></a>
<a href="https://mail.google.com/"><img
src="https://i.pinimg.com/564x/f6/cd/65/f6cd6544ef6c35f5e1acc3a347755222.jpg" alt=""></a>
</div>
</div>
</div>
<div>
<h2>Makers of Suzhal-The Vortex express their excitement as the series gears up for its global release</h2>
<p>Creators Pushkar and Gayathri talk about how excited they are that Amazon Prime Video Original 'Suzhal-The
Vortex' is going global in 30+ global languages.</p>
</div>
</div>
</div>
<!-- -------------------------------------------- -->
<!-- --------------VideoDIv Start------------------------------ -->
<div id="videos">
<div id="vbox" style="display:flex ;">
<div class="slider-container">
<div class="slider">
<div class="slides">
<div id="slides__1" class="slide">
<span class="slide__text"><img id="simg"
src="https://pbs.twimg.com/media/FRrxy--VEAANeXs?format=jpg&name=small" alt="">
<p id="stxt">In Uttar Pradesh's Chandauli, Gangster's daughter dies after allegedly
beaten by police during raid, SHO suspended: WATCH</p>
</span>
<a class="slide__prev" href="#slides__3" title="Next"></a>
<a class="slide__next" href="#slides__2" title="Next"></a>
</div>
<div id="slides__2" class="slide">
<span class="slide__text"><img id="simg"
src="https://i.guim.co.uk/img/media/a1e78b7522ba7cf47e791f1ccfd1d8dc8a4ffe0a/31_0_3275_1966/master/3275.jpg?width=700&quality=85&auto=format&fit=max&s=6f8e47cac34679a2952cd38efb67cbf6"
alt="">
<p id="stxt">Ukraine says it sank two Russian patrol boats near Snake Island</p>
</span>
<a class="slide__prev" href="#slides__1" title="Prev"></a>
<a class="slide__next" href="#slides__3" title="Next"></a>
</div>
<div id="slides__3" class="slide">
<span class="slide__text"><img id="simg"
src="https://images.firstpost.com/wp-content/uploads/2022/04/Vladimir-Putin1.jpg?impolicy=website&width=640&height=363"
alt="">
<p id="stxt">Russia captures east Ukraine town Kreminna, honours Brigade accused of
Bucha carnage for 'mass heroism'</p>
</span>
<a class="slide__prev" href="#slides__2" title="Prev"></a>
<a class="slide__next" href="#slides__1" title="Next"></a>
</div>
</div>
</div>
</div>
</div>
</div>
<!---------------VideoDIv ENd-------------------------------------->
<div id="newsbox">
<a
href="https://www.firstpost.com/entertainment/bollywood/spotted-sara-ali-khan-rushing-from-one-meeting-to-another-10797471.html">
<img src="https://images.firstpost.com/wp-content/uploads/2022/06/640-x-363-2022-06-15T170055.420.jpg?impolicy=website&width=640&height=363"
alt="">
<div id="newsboxcontent">
<div style="display: flex; justify-content: space-between;padding: 10px;margin-bottom: -30px;">
<p id="grey" style="text-decoration:underline rgb(204, 162, 63) ;">ENTERTAINMENT</p>
</a>
<div class="dropup">
<button class="dropbtn"><img src="https://cdn-icons-png.flaticon.com/512/18/18672.png" alt=""></button>
<div class="dropup-content">
<a href="https://www.facebook.com/"><img
src="https://seeklogo.com/images/F/facebook-icon-circle-logo-09F32F61FF-seeklogo.com.png"
alt=""></a>
<a href="https://twitter.com/"><img
src="https://www.pngkey.com/png/full/2-27646_twitter-logo-png-transparent-background-logo-twitter-png.png"
alt=""></a>
<a href="https://web.whatsapp.com/"><img
src="https://upload.wikimedia.org/wikipedia/commons/thumb/6/6b/WhatsApp.svg/479px-WhatsApp.svg.png"
alt=""></a>
<a href="https://mail.google.com/"><img
src="https://i.pinimg.com/564x/f6/cd/65/f6cd6544ef6c35f5e1acc3a347755222.jpg" alt=""></a>
</div>
</div>
</div>
<div>
<h2>Spotted: Sara Ali khan rushing from one meeting to another</h2>
<p>Sara Ali Khan switches on her work mode as she attends two meetings in a day.</p>
</div>
</div>
</div>
<!-- -------------------------------------------- -->
<div id="newsbox">
<a
href="https://www.firstpost.com/firstcricket/sports-news/sri-lanka-vs-australia-visitors-injury-woes-deepen-as-stoinis-ruled-out-10797411.html">
<img src="https://images.firstpost.com/wp-content/uploads/2022/06/Stoinis-vs-SL-AP-640.jpg?impolicy=website&width=640&height=363"
alt="">
<div id="newsboxcontent">
<div style="display: flex; justify-content: space-between;padding: 10px;margin-bottom: -30px;">
<p id="grey" style="text-decoration:underline rgb(204, 162, 63) ;">FIRSTCRICKET</p>
</a>
<div class="dropup">
<button class="dropbtn"><img src="https://cdn-icons-png.flaticon.com/512/18/18672.png" alt=""></button>
<div class="dropup-content">
<a href="https://www.facebook.com/"><img
src="https://seeklogo.com/images/F/facebook-icon-circle-logo-09F32F61FF-seeklogo.com.png"
alt=""></a>
<a href="https://twitter.com/"><img
src="https://www.pngkey.com/png/full/2-27646_twitter-logo-png-transparent-background-logo-twitter-png.png"
alt=""></a>
<a href="https://web.whatsapp.com/"><img
src="https://upload.wikimedia.org/wikipedia/commons/thumb/6/6b/WhatsApp.svg/479px-WhatsApp.svg.png"
alt=""></a>
<a href="https://mail.google.com/"><img
src="https://i.pinimg.com/564x/f6/cd/65/f6cd6544ef6c35f5e1acc3a347755222.jpg" alt=""></a>
</div>
</div>
</div>
<div>
<h2>Sri Lanka vs Australia: Visitors' injury woes deepen as Stoinis ruled out</h2>
<p>Stoinis strained his side smashing 44 off 31 in Tuesday's two-wicket win in Pallekele and Cricket Australia
said Wednesday that the 32-year-old will play no further part in the five-match series.</p>
</div>
</div>
</div>
<!-- -------------------------------------------- -->
<div id="newsbox">
<a
href="https://www.firstpost.com/politics/maharashtra-congress-leader-booked-for-using-derogatory-language-against-pm-modi-10797261.html">
<img src="https://images.firstpost.com/wp-content/uploads/2022/06/Sheikh-Hussain1.jpg?impolicy=website&width=640&height=363"
alt="">
<div id="newsboxcontent">
<div style="display: flex; justify-content: space-between;padding: 10px;margin-bottom: -30px;">
<p id="grey" style="text-decoration:underline rgb(204, 162, 63) ;">POLITICS</p>
</a>
<div class="dropup">
<button class="dropbtn"><img src="https://cdn-icons-png.flaticon.com/512/18/18672.png" alt=""></button>
<div class="dropup-content">
<a href="https://www.facebook.com/"><img
src="https://seeklogo.com/images/F/facebook-icon-circle-logo-09F32F61FF-seeklogo.com.png"
alt=""></a>
<a href="https://twitter.com/"><img
src="https://www.pngkey.com/png/full/2-27646_twitter-logo-png-transparent-background-logo-twitter-png.png"
alt=""></a>
<a href="https://web.whatsapp.com/"><img
src="https://upload.wikimedia.org/wikipedia/commons/thumb/6/6b/WhatsApp.svg/479px-WhatsApp.svg.png"
alt=""></a>
<a href="https://mail.google.com/"><img
src="https://i.pinimg.com/564x/f6/cd/65/f6cd6544ef6c35f5e1acc3a347755222.jpg" alt=""></a>
</div>
</div>
</div>
<div>
<h2>Maharashtra Congress leader booked for using derogatory language against PM Modi
</h2>
<p>The case has been registered against Sheikh Hussain at Gittikhadan Police Station in Nagpur under Sections
294 and 504 of the Indian Penal Code.</p>
</div>
</div>
</div>
<!-- -------------------------------------------- -->
<div id="newsbox">
<a
href="https://www.firstpost.com/politics/prez-polls-too-early-to-comment-says-mahatma-gandhis-grandson-gopalkrishna-gandhi-on-becoming-oppn-nominee-10797381.html">
<img src="https://images.firstpost.com/wp-content/uploads/2022/06/gopalkrishna-gandhi.jpg?impolicy=website&width=640&height=363"
alt="">
<div id="newsboxcontent">
<div style="display: flex; justify-content: space-between;padding: 10px;margin-bottom: -30px;">
<p id="grey" style="text-decoration:underline rgb(204, 162, 63) ;">POLITICS</p>
</a>
<div class="dropup">
<button class="dropbtn"><img src="https://cdn-icons-png.flaticon.com/512/18/18672.png" alt=""></button>
<div class="dropup-content">
<a href="https://www.facebook.com/"><img
src="https://seeklogo.com/images/F/facebook-icon-circle-logo-09F32F61FF-seeklogo.com.png"
alt=""></a>
<a href="https://twitter.com/"><img
src="https://www.pngkey.com/png/full/2-27646_twitter-logo-png-transparent-background-logo-twitter-png.png"
alt=""></a>
<a href="https://web.whatsapp.com/"><img
src="https://upload.wikimedia.org/wikipedia/commons/thumb/6/6b/WhatsApp.svg/479px-WhatsApp.svg.png"
alt=""></a>
<a href="https://mail.google.com/"><img
src="https://i.pinimg.com/564x/f6/cd/65/f6cd6544ef6c35f5e1acc3a347755222.jpg" alt=""></a>
</div>
</div>
</div>
<div>
<h2>Prez polls: 'Too early to comment,' says Mahatma Gandhi's grandson Gopalkrishna Gandhi on becoming Oppn
nominee</h2>
<p>Gandhi was the consensus opposition candidate for the post of Vice President of India in 2017 but had lost to
M Venkaiah Naidu in the election</p>
</div>
</div>
</div>
<!-- -------------------------------------------- -->
<div id="newsbox">
<a href="https://www.firstpost.com/world/uae-to-suspend-export-of-indian-wheat-for-four-months-10797311.html">
<img src="https://images.firstpost.com/wp-content/uploads/2022/05/wheat2.jpg?impolicy=website&width=640&height=363"
alt="">
<div id="newsboxcontent">
<div style="display: flex; justify-content: space-between;padding: 10px;margin-bottom: -30px;">
<p id="grey" style="text-decoration:underline rgb(204, 162, 63) ;">WORLD</p>
</a>
<div class="dropup">
<button class="dropbtn"><img src="https://cdn-icons-png.flaticon.com/512/18/18672.png" alt=""></button>
<div class="dropup-content">
<a href="https://www.facebook.com/"><img
src="https://seeklogo.com/images/F/facebook-icon-circle-logo-09F32F61FF-seeklogo.com.png"
alt=""></a>
<a href="https://twitter.com/"><img
src="https://www.pngkey.com/png/full/2-27646_twitter-logo-png-transparent-background-logo-twitter-png.png"
alt=""></a>
<a href="https://web.whatsapp.com/"><img
src="https://upload.wikimedia.org/wikipedia/commons/thumb/6/6b/WhatsApp.svg/479px-WhatsApp.svg.png"
alt=""></a>
<a href="https://mail.google.com/"><img
src="https://i.pinimg.com/564x/f6/cd/65/f6cd6544ef6c35f5e1acc3a347755222.jpg" alt=""></a>
</div>
</div>
</div>
<div>
<h2>UAE to suspend export of Indian wheat for four months</h2>
<p>CThe UAE Ministry of Economy said the decision was taken 'in view of the international developments that have
affected trade flows'</p>
</div>
</div>
</div>
<!-- -------------------------------------------- -->
<div id="newsbox">
<a
href="https://www.firstpost.com/firstcricket/sports-news/joe-root-rises-to-top-spot-in-icc-test-rankings-10797281.html">
<img src="https://images.firstpost.com/wp-content/uploads/2022/06/Joe-Root-hundred-Lords-ENG-NZ-AP-640.jpg?impolicy=website&width=640&height=363"
alt="">
<div id="newsboxcontent">
<div style="display: flex; justify-content: space-between;padding: 10px;margin-bottom: -30px;">
<p id="grey" style="text-decoration:underline rgb(204, 162, 63) ;">CRICKET</p>
</a>
<div class="dropup">
<button class="dropbtn"><img src="https://cdn-icons-png.flaticon.com/512/18/18672.png" alt=""></button>
<div class="dropup-content">
<a href="https://www.facebook.com/"><img
src="https://seeklogo.com/images/F/facebook-icon-circle-logo-09F32F61FF-seeklogo.com.png"
alt=""></a>
<a href="https://twitter.com/"><img
src="https://www.pngkey.com/png/full/2-27646_twitter-logo-png-transparent-background-logo-twitter-png.png"
alt=""></a>
<a href="https://web.whatsapp.com/"><img
src="https://upload.wikimedia.org/wikipedia/commons/thumb/6/6b/WhatsApp.svg/479px-WhatsApp.svg.png"
alt=""></a>
<a href="https://mail.google.com/"><img
src="https://i.pinimg.com/564x/f6/cd/65/f6cd6544ef6c35f5e1acc3a347755222.jpg" alt=""></a>
</div>
</div>
</div>
<div>
<h2>Joe Root rises to top spot in ICC Test rankings</h2>
<p>For Joe Root, this comes on the back of a successful run with the bat thus far in the home Test series
against New Zealand.</p>
</div>
</div>
</div>
<!-- -------------------------------------------- -->
<div id="newsbox">
<a
href="https://www.firstpost.com/india/explained-how-indias-new-prosthetic-limb-will-make-life-easier-of-the-specially-abled-10796871.html">
<img src="https://images.firstpost.com/wp-content/uploads/2022/06/IIT-Guwahati.jpg?impolicy=website&width=640&height=363"
alt="">
<div id="newsboxcontent">
<div style="display: flex; justify-content: space-between;padding: 10px;margin-bottom: -30px;">
<p id="grey" style="text-decoration:underline rgb(204, 162, 63) ;">INDIA</p>
</a>
<div class="dropup">
<button class="dropbtn"><img src="https://cdn-icons-png.flaticon.com/512/18/18672.png" alt=""></button>
<div class="dropup-content">
<a href="https://www.facebook.com/"><img
src="https://seeklogo.com/images/F/facebook-icon-circle-logo-09F32F61FF-seeklogo.com.png"
alt=""></a>
<a href="https://twitter.com/"><img
src="https://www.pngkey.com/png/full/2-27646_twitter-logo-png-transparent-background-logo-twitter-png.png"
alt=""></a>
<a href="https://web.whatsapp.com/"><img
src="https://upload.wikimedia.org/wikipedia/commons/thumb/6/6b/WhatsApp.svg/479px-WhatsApp.svg.png"
alt=""></a>
<a href="https://mail.google.com/"><img
src="https://i.pinimg.com/564x/f6/cd/65/f6cd6544ef6c35f5e1acc3a347755222.jpg" alt=""></a>
</div>
</div>
</div>
<div>
<h2>Explained: How India’s new prosthetic limb will make life easier for the specially abled</h2>
<p>In its final phase of trials, the prosthetic leg once ready will be commercially available to people with
disabilities within the range of Rs 25,000 by next year</p>
</div>
</div>
</div>
<!-- -------------------------------------------- -->
<div id="newsbox">
<a
href="https://www.firstpost.com/art-and-culture/from-being-bullied-to-becoming-a-beauty-queen-the-story-of-miss-india-usa-2021-vaidehi-dongre-10796751.html">
<img src="https://images.firstpost.com/wp-content/uploads/2022/06/pjimage-2022-06-15T154212.400.jpg?impolicy=website&width=640&height=363"
alt="">
<div id="newsboxcontent">
<div style="display: flex; justify-content: space-between;padding: 10px;margin-bottom: -30px;">
<p id="grey" style="text-decoration:underline rgb(204, 162, 63) ;">ART-AND-CULTURE</p>
</a>
<div class="dropup">
<button class="dropbtn"><img src="https://cdn-icons-png.flaticon.com/512/18/18672.png" alt=""></button>
<div class="dropup-content">
<a href="https://www.facebook.com/"><img
src="https://seeklogo.com/images/F/facebook-icon-circle-logo-09F32F61FF-seeklogo.com.png"
alt=""></a>
<a href="https://twitter.com/"><img
src="https://www.pngkey.com/png/full/2-27646_twitter-logo-png-transparent-background-logo-twitter-png.png"
alt=""></a>
<a href="https://web.whatsapp.com/"><img
src="https://upload.wikimedia.org/wikipedia/commons/thumb/6/6b/WhatsApp.svg/479px-WhatsApp.svg.png"
alt=""></a>
<a href="https://mail.google.com/"><img
src="https://i.pinimg.com/564x/f6/cd/65/f6cd6544ef6c35f5e1acc3a347755222.jpg" alt=""></a>
</div>
</div>
</div>
<div>
<h2>From being bullied to becoming a beauty queen: The story of Miss India USA 2021 Vaidehi Dongre</h2>
<p>In an exclusive conversation with Firstpost, Miss India USA 2021 Vaidehi Dongre opens up about how winning
the prestigious title changed her life and more.</p>
</div>
</div>
</div>
<!-- -------------------------------------------- -->
<div id="newsbox">
<a
href="https://www.firstpost.com/opinion/as-covid-19-cases-rise-vaccines-play-vital-role-to-prevent-mass-hospitalization-adverse-outcomes-10796841.html">
<img src="https://images.firstpost.com/wp-content/uploads/2022/02/Pfizer.jpg?impolicy=website&width=640&height=363"
alt="">
<div id="newsboxcontent">
<div style="display: flex; justify-content: space-between;padding: 10px;margin-bottom: -30px;">
<p id="grey" style="text-decoration:underline rgb(204, 162, 63) ;">OPINION</p>
</a>
<div class="dropup">
<button class="dropbtn"><img src="https://cdn-icons-png.flaticon.com/512/18/18672.png" alt=""></button>
<div class="dropup-content">
<a href="https://www.facebook.com/"><img
src="https://seeklogo.com/images/F/facebook-icon-circle-logo-09F32F61FF-seeklogo.com.png"
alt=""></a>
<a href="https://twitter.com/"><img
src="https://www.pngkey.com/png/full/2-27646_twitter-logo-png-transparent-background-logo-twitter-png.png"
alt=""></a>
<a href="https://web.whatsapp.com/"><img
src="https://upload.wikimedia.org/wikipedia/commons/thumb/6/6b/WhatsApp.svg/479px-WhatsApp.svg.png"
alt=""></a>
<a href="https://mail.google.com/"><img
src="https://i.pinimg.com/564x/f6/cd/65/f6cd6544ef6c35f5e1acc3a347755222.jpg" alt=""></a>
</div>
</div>
</div>
<div>
<h2>As COVID-19 cases rise, vaccines play vital role to prevent mass hospitalization, adverse outcomes</h2>
<p>Vaccines play a crucial role in preventing infection, hospitalizations, and adverse outcomes which cause