-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
4956 lines (4265 loc) · 236 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>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>+380 Videos of the Palestinian Genocide in Gaza, #JusticeForGaza</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link href="https://fonts.googleapis.com/css?family=Droid+Sans:400,700" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<meta name="description" content="+380 Videos of the Palestinian Genocide in Gaza, #JusticeForGaza" />
<meta name="keywords" content="videos repression gaza palestine genocide israel zionism"/>
<meta name="author" content="Multiple contributors"/>
<link rel="shortcut icon" type="image/jpg" href="images/favicon.jpg">
</head>
<body>
<div class="container gallery-container">
<h1>Justice For Gaza</h1>
<p class="page-description text-center">+380 Videos of the Palestinian Genocide in Gaza, #JusticeForGaza<br/><br/>#JusticeForGaza</p>
<div class="tz-gallery">
<div class="row">
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://x.com/i/status/1809324085270442484" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/amplify_video_thumb/1809323998020333569/img/4XPhr3xiykc0zHAV.jpg">
</a>
<div class="caption">
<p>Israel has dropped almost 75,000 bombs and shells on Gaza in 200 days, twenty times more than the US aimed at Iraq in six years of war. The world's 200 bloodiest days since the Rwandan genocide. It’s not war. It’s genocide.</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://x.com/NourNaim88/status/1810779126363836686" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/ext_tw_video_thumb/1810778684434907138/pu/img/9iTFSpyKaPSJ4hy1.jpg">
</a>
<div class="caption">
<p>Heartbreaking: This child was discharged from the hospital with severe burns on her face and head, inflicted by the Israeli army. The Israeli army is burning the children of #Gaza…</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://x.com/Fx1Jonny/status/1810780804890444108" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/amplify_video_thumb/1810778711308017664/img/1yw1klSzDqJgQqr5.jpg">
</a>
<div class="caption">
<p>BREAKING NEWS! 🚨 🚨
Israel have hit Gaza with another airstrike and there’s at least 60 Palestinians massacred so far.
60 in 1 hit, please someone make it stop!!</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://x.com/Bernadotte22/status/1810670734110498891" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/amplify_video_thumb/1810670364768579584/img/_Nys8An1CMjng7YW.jpg">
</a>
<div class="caption">
<p>A touching farewell from a father hugging his bloodied, martyred child in Gaza City😭😭😭😭😭😭</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/gazanotice/status/1808085144021975260/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/amplify_video_thumb/1808085067345895424/img/9XxxVfJWUT6mlL4l.jpg">
</a>
<div class="caption">
<p>Gaza’s European hospital evacuated and decommissioned https://t.co/iyl7nF4vVW</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/V_Palestine20/status/1808084654978658490/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/ext_tw_video_thumb/1808084561571479552/pu/img/ZT_3tGzcze8ze2-w.jpg">
</a>
<div class="caption">
<p>\\"We lose at least one child on a daily basis.\\"
Dr. Wissam Al-Sakani reports severe shortages of nutritional food and medical supplies needed to save children's lives in Kamal Adwan Hospital, northern Gaza Strip. https://t.co/KV0K7uria2</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/HollowDreams0/status/1808083012275351693/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/ext_tw_video_thumb/1808082932331933697/pu/img/BsdCEAO481hTkOep.jpg">
</a>
<div class="caption">
<p>A little girl under the age of 10 sustained a severed artery as a result of the criminal Israeli bombardment on the Gaza Strip. https://t.co/ZpsDg7yTS5</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/Kuffiyateam/status/1808080345025200567/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/ext_tw_video_thumb/1808080291531309056/pu/img/fqaQ1o3gjAr2gFBZ.jpg">
</a>
<div class="caption">
<p>Ten Palestinians killed and dozens injured in an Israeli airstrike that targeted a group of civilians trying to get water for their families in Al-Zaytoun neighborhood, southeast of Gaza City. https://t.co/Dvi2hhACfz</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/marisaturno_/status/1808078970329419885/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/amplify_video_thumb/1808078903740604417/img/ZWJcmZggo36wZacq.jpg">
</a>
<div class="caption">
<p>“The North was isolated from the whole world.”
A Palestinian talks about the difficult living conditions in northern Gaza in light of the siege, the closure of crossings, and the lack of food due to the nonstop genøcide. https://t.co/NV8p6TOeOE</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/QudsNen/status/1808078968240693728/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/ext_tw_video_thumb/1808078751160586240/pu/img/uLYfGk8ND04DJwOU.jpg">
</a>
<div class="caption">
<p>Displaced Palestinians set up a new displacement encampment in the yard of Khan Yunis Municipality, southern Gaza, after being forced to evacuate the eastern areas of the province amid a new Israeli onslaught on the region. https://t.co/pQOLHLQYGw</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/MiddleEastEye/status/1808078329242685942/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/media/GReVXHDWQAAOBvO.jpg">
</a>
<div class="caption">
<p>A Palestinian photographer takes a photo of a boy tying a rock around his stomach in an attempt to manage his hunger, depicting the famine rampant in northern Gaza. https://t.co/Tv9B5ZorOK</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/stairwayto3dom/status/1808074846565457984/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/amplify_video_thumb/1808074782195228672/img/wgfmJcNrL4vycfuC.jpg">
</a>
<div class="caption">
<p>🚨🇮🇱 Israel keeps bombing CIVILIAN HOMES in Gaza! https://t.co/PXCrurnRL3</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/OnlinePalEng/status/1808070979664462101/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/amplify_video_thumb/1808070893996068866/img/Rbv7odW56Y8j2isI.jpg">
</a>
<div class="caption">
<p>Palestinians evacuated the sick and injured from European Gaza Hospital in Khan Younis to Nasser Hospital in Rafah on foot, following Israeli threats of a ground invasion in Khan Younis. https://t.co/Z72YcTRK22</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/gazanotice/status/1808070848483319942/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/amplify_video_thumb/1808070629955932160/img/QvtpDy5iJIcBd2Zi.jpg">
</a>
<div class="caption">
<p>The number of deaths in the Israeli attack on Palestinians gathered at the water distribution point near the Al-Sham'a Mosque in Al-Zaytun increased to 5. https://t.co/jI1PHbz0nX</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/AbujomaaGaza/status/1808070677787726234/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/amplify_video_thumb/1808067480709128192/img/tbZ6mGZGFqcxwwPT.jpg">
</a>
<div class="caption">
<p>Horrible scenes after TEN people were KILLED in #Israeli_bombing of Al Sham’a neighbourhood in Gaza’s Old City!
#StopGazaGenocide https://t.co/HJBX9S9lvn</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/WFP_MENA/status/1808070326145749452/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/ext_tw_video_thumb/1808070070020554752/pu/img/BTppeCFrKk8folQl.jpg">
</a>
<div class="caption">
<p>📍 #KhanYunis, #Gaza
Families like Hanaa's, who rebuilt their lives in tents after the #Rafah incursion, are being forced to evacuate again. They flee without knowing where to go, losing access to basic needs, resilience, and hope.
🎥 WFP's Alia Zaki explains ⤵️ https://t.co/Uy9mstT08C</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/Bernadotte22/status/1808069586002022599/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/amplify_video_thumb/1808069514925338625/img/POMYrFCU8zuBkEkt.jpg">
</a>
<div class="caption">
<p>Medical teams evacuate patients from the Gaza European Hospital💔 https://t.co/qjiFWfgNe4</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/Palestine001_/status/1808068634171809852/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/ext_tw_video_thumb/1808068414436483072/pu/img/nbeGFPHQJU1rqODG.jpg">
</a>
<div class="caption">
<p>They have been displaced from the city of Khan Yunis and have no place to sleep. https://t.co/dlNiQ1m9en</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/palinfoen/status/1808067452154064925/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/ext_tw_video_thumb/1808067191981387776/pu/img/1qCzsWFQum061ufk.jpg">
</a>
<div class="caption">
<p>A Palestinian child was killed in an Israeli airstrike that targeted his family house in Nuseirat refugee camp, central Gaza Strip last night. https://t.co/G8zOMIiLKS</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/OnlinePalEng/status/1808065221132505191/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/amplify_video_thumb/1808065068262633475/img/JfVzl2rnnPwChVcn.jpg">
</a>
<div class="caption">
<p>Palestinians save an injured cat from under the rubble of a home bombed by the Israeli occupation in northern Gaza City. https://t.co/bdf7LWQvxH</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/JalalAK_jojo/status/1808064312184860827/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/ext_tw_video_thumb/1808064286129856512/pu/img/Ucx3H4OeywKBDd70.jpg">
</a>
<div class="caption">
<p>The Israeli government poured millions pushing propaganda about rape as \\"weapon of war\\" to justify the wholesale slaughter of Palestinians in Gaza.
Reality: the Israeli army itself uses rape as a weapon of war. Numerous testimonies from kidnapped Palestinians attest to that fact https://t.co/fdnpUvClQM</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/AnasAlSharif0/status/1808064222330270117/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/ext_tw_video_thumb/1808064154797821952/pu/img/is43sjtbzXPFg6wU.jpg">
</a>
<div class="caption">
<p>A horrific massacre committed by the occupation army by targeting the Al-Shamaa area in the Al-Zaytoun neighborhood, southeast of Gaza City. https://t.co/cvCwIAQaY1</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/swilkinsonbc/status/1808063351705968765/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/amplify_video_thumb/1808063271750017024/img/aOHyo6iK3I1S1l2E.jpg">
</a>
<div class="caption">
<p>RT @swilkinsonbc \\"A Palestinian mother bids farewell to her beloved son who was killed by the israelis in last night’s air strikes on south Gaza | @EyeonPalestine https://t.co/vJHWkHGyNB\\"</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/ShaykhSulaiman/status/1808062807549829457/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/ext_tw_video_thumb/1807967970226044928/pu/img/nr8iEcT-vAkfsze7.jpg">
</a>
<div class="caption">
<p>CHILDREN OF GAZA https://t.co/YQVaEN8gEb</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/MayadeenEnglish/status/1808062529920172451/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/ext_tw_video_thumb/1808061505981513728/pu/img/UHX4sjUG91zuagIb.jpg">
</a>
<div class="caption">
<p>Palestinians who were forcibly displaced to #KhanYounis, the second-largest city in the Gaza Strip, and those already living there, have been ordered to evacuate once more.
The Israeli occupation forces continue to prove that nowhere in the #Gaza Strip is safe.
#Palestine https://t.co/tuPrG73InW</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/Kuffiyateam/status/1808061786207256884/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/ext_tw_video_thumb/1808061724894912512/pu/img/8ojz7bPjxUPRCbXA.jpg">
</a>
<div class="caption">
<p>This Palestinian young man had to pull his injured friend for 20 km on foot to transport him to Nasser Hospital in Rafah, following the Israeli occupation's order to evacuate the European Gaza Hospital. https://t.co/AadckCrh2i</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/buildersmideast/status/1808060719604154838/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/ext_tw_video_thumb/1808060495749902336/pu/img/rm4vu4WLCb64WCJZ.jpg">
</a>
<div class="caption">
<p>This lady compares the Hamas to Russia under Putin, and says Palestinian people in Gaza are tortured by ruin. They suffered from hunger, homelessness and constant displacement. She says people want to end Hamas, end the war, and see Hamas surrender.
Credit to @MoumALnatour https://t.co/yhmwqN62GP</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/Abdullah_Om3r03/status/1808058860831146293/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/amplify_video_thumb/1808054307054297088/img/jhp5OqvxhsyFH4a7.jpg">
</a>
<div class="caption">
<p>A Palestinian woman bids farewell to her child who was killed in the occupation raids in the Gaza Strip
🇵🇸💔😭💔 https://t.co/RP6ZhiJXLA</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/OnlinePalEng/status/1808058097404928233/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/amplify_video_thumb/1808057732831772672/img/q6CBbvPBPDDdZNpT.jpg">
</a>
<div class="caption">
<p>Infections and skin diseases break out among displaced Palestinian children due to the extreme heat inside the tents and the lack of clean water and hygiene products in Gaza. https://t.co/Yh2aAFq2zo</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/palinfoen/status/1808057629970702462/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/ext_tw_video_thumb/1808055811333095425/pu/img/OqU_sCb9CBQSfm9i.jpg">
</a>
<div class="caption">
<p>Mahmoud Salma from Palestine’s Gaza has taken to social media to share the story of his daughter, Celine, a little girl whose childhood has been upended by Israel’s war on the enclave.
Now living in a small tent with his family, he expresses to TRT his wish for Celine to have https://t.co/It4vxSBCBV</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/SilentlySirs/status/1808057359748452460/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/amplify_video_thumb/1808057291913998337/img/QmoAX7yY-BF94IKH.jpg">
</a>
<div class="caption">
<p>Displaced families sleep in the streets after they were forcibly displaced from the east of Khan Younis. 💔
#Gaza #Displacement #HumanRights #KhanYounis #Tragedy https://t.co/QRQ0wuaWrM</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/swilkinsonbc/status/1808056777541329318/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/amplify_video_thumb/1808056715880902657/img/ZaB9aOCk5aSFBDIv.jpg">
</a>
<div class="caption">
<p>The moment that a Palestinian woman in Gaza was informed by a newly released prisoner that her husband — abducted months ago, is still alive https://t.co/34xY0z0rEK</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/SuppressedNws/status/1808056007517507720/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/amplify_video_thumb/1808055935132114944/img/ij44ycFRMfsAG_iQ.jpg">
</a>
<div class="caption">
<p>This is what israel did to Gaza💔 https://t.co/G9frVMqKMX</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/hippyygoat/status/1808053270364975535/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/amplify_video_thumb/1808053187749814272/img/UvxXTRXgNIJF-XAx.jpg">
</a>
<div class="caption">
<p>Artistic resistance💚
16000 holes made for each child killed in Palestine👼
\\"Temporary memorial\\" has been created in memory of the children killed by the war in Gaza on Bombay Beach in California, US.
Behn Samareh, the artist behind the project, aims to drill a hole for every https://t.co/S2Im5D7y4s</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/Abdullah_Om3r03/status/1808053215860011470/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/amplify_video_thumb/1808052842780913664/img/5asfzifKEUZ0SCUa.jpg">
</a>
<div class="caption">
<p>Israeli vehicles indiscriminately open fire at displaced Palestinian children and civilians in Rafah’s tent shelters in the south of Gaza #GazaGenocide https://t.co/AQiQR9k3Ag</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/ayshaahmeds/status/1808052952051208293/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/ext_tw_video_thumb/1808052902118019077/pu/img/2p6Ld8t-t-wvu1LT.jpg">
</a>
<div class="caption">
<p>Israel issued a new evacuation order for the civilians of Khan Younis and Rafah in the Gaza Strip.
All Eyes On Gaza, Palestine
#GazaGenocide https://t.co/Kl7Y7gKC0Q</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/Palestine001_/status/1808051906020811156/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/ext_tw_video_thumb/1808051854808346624/pu/img/1k2ckxSQ-rKkDH9Q.jpg">
</a>
<div class="caption">
<p>In the middle of the night, thousands of families were displaced from the eastern areas of the city of Khan Yunis due to artillery shelling and threats from the Israeli occupation. https://t.co/PVgtVMfzwq</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/palinfoen/status/1808050771495203220/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/ext_tw_video_thumb/1808050665312157696/pu/img/psKFFixfgHcXYtvE.jpg">
</a>
<div class="caption">
<p>“We left behind many other prisoners, tens of thousands who are living in difficult conditions, experiencing psychological and physical torture.”
The head of the Gaza Strip's biggest hospital, says after being freed from more than seven months of detention that he witnessed https://t.co/ifPYVcqGSc</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/BdsMalaysia/status/1808050142848995779/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/ext_tw_video_thumb/1808050124666593280/pu/img/aXWj_RaRBuYTk4oC.jpg">
</a>
<div class="caption">
<p>Israeli warplanes shell Palestinian citizens in Gaza, killing 8 civilians and injuring others …. 2 July 2024. Video of the aftermath.
#IsraelIsATerroristState https://t.co/j2zR0N9KEh</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/Kuffiyateam/status/1808049850556043646/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/ext_tw_video_thumb/1808049819782389761/pu/img/CRptheMgICSpY6_c.jpg">
</a>
<div class="caption">
<p>A heartbroken Palestinian woman cries in pain over the loss of her son who was murdered in an Israeli airstrike in Gaza. https://t.co/S8AI02CPOk</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/Sadafmalic/status/1808042163126546441/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/ext_tw_video_thumb/1808042137990111232/pu/img/zleWbzt9SWc-vg3k.jpg">
</a>
<div class="caption">
<p>Finally Ibrahim evacuated from #Gaza & now in #cairo
May this innocent soul find some peace now♥️
#PalestiniansLivesMatter
#GazaIsStarving
#Gaza_life_matters
#Zionism_CurseOnHumanity
#IsraelisATerorrist
#IsraelTerroristState https://t.co/CXR3PAQjaF</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/QudsNen/status/1808035580900475369/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/ext_tw_video_thumb/1808035252150960128/pu/img/-KS0BIpZvoVneiiR.jpg">
</a>
<div class="caption">
<p>Medical teams, patients and the wounded are facing forcible eviction from the Gaza European Hospital in Khan Yunis as the Israeli occupation army declares a ground onslaught on the region. https://t.co/EFaved61bz</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/sabahashim01/status/1808034000654815439/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/ext_tw_video_thumb/1808033919524052992/pu/img/re_WlthCuLdMmui5.jpg">
</a>
<div class="caption">
<p>\\"Look at How women in Gaza Being Treated\\"
#Palestine https://t.co/DpGLHKE9aD</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/AbujomaaGaza/status/1808028139014312400/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/media/GRdn_zIXwAAGkww.jpg">
</a>
<div class="caption">
<p>Five people were KILLED and 10 others WOUNDED in #Israeli_bombing of Al Sheikh Ridwan neighbourhood, north of #Gaza_City!
#StopGazaGenocide https://t.co/LgcpT4aCDJ</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/EyeonPalestine/status/1808027406319358146/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/ext_tw_video_thumb/1808027104916717568/pu/img/cd031oewwsCddocb.jpg">
</a>
<div class="caption">
<p>A girl under the age of 10 sustained a severed artery as a result of the Israeli bombardment on the Gaza Strip. https://t.co/JMmYhKfGIU</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/Salma_Fareed_/status/1808026081250652215/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/ext_tw_video_thumb/1808025458514018304/pu/img/io81jtPIbkjTFEnB.jpg">
</a>
<div class="caption">
<p>Children are homeless after the occupation asked to evacuate Khan Yunis💔😓🇵🇸
#Gaza
#GazaGenocide https://t.co/Dd49i478U5</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/Palestine001_/status/1808024233202913572/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/ext_tw_video_thumb/1808023825189060609/pu/img/LVaHxEEeQFC-LUwx.jpg">
</a>
<div class="caption">
<p>You won't believe how this little girl lives.
#North_of_Gaza https://t.co/B2PDfFG0E1</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/BenFRubinstein/status/1808021283957100886/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/ext_tw_video_thumb/1808005300491874304/pu/img/kTAc3OZYGFZTXz2X.jpg">
</a>
<div class="caption">
<p>This happens overnight in Gaza One dead and several wounded... https://t.co/4iU4Fmwf7m</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/PalHighlight/status/1807993554263753160/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/ext_tw_video_thumb/1807993259047714818/pu/img/vCjDCLkZzDCiDDM7.jpg">
</a>
<div class="caption">
<p>At least 8 Palestinians killed in series of Israeli attacks in Rafah, Khan Yunis, and southern Gaza
Follow Press TV on Telegram: https://t.co/fvRn3KuApw https://t.co/HMz0cXXdER</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/TheWhitRabit/status/1807993168337817905/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/ext_tw_video_thumb/1807992877404020736/pu/img/YyxG6iVaL-J-SGlR.jpg">
</a>
<div class="caption">
<p>Pathetic israel killing innocent children's in Gaza. https://t.co/J69P2MKHj2</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/SuppressedNws/status/1807991804576301393/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/amplify_video_thumb/1807991456872751105/img/BkxXfbRx3m9-n7YA.jpg">
</a>
<div class="caption">
<p>🧵What happened during the night in Gaza?
Israel's military targeted eastern Khan Yunis, leaving casualties, including children.—Video1
They targeted security forces, responsible for guarding aid, east of Rafah. One fatality and several injuries reported.—Video2&3 https://t.co/pOy1jrxGQm</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/HCWforPalestine/status/1807989543036932586/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/ext_tw_video_thumb/1807989357518761984/pu/img/jPaQesUKdFLaI_RE.jpg">
</a>
<div class="caption">
<p>Urgent appeal from the European Gaza Hospital healthcare workers: who has a backbone to tell the israelis that bombing hospitals is a war crime https://t.co/XBNIaJUix6</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/zamannx/status/1807968871657492795/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/media/GRcyFRrb0AAjhZC.jpg">
</a>
<div class="caption">
<p>Families in Khan Yunis , Gaza Strip, don’t know where to go. They are fleeing to the streets due to the Israeli bombardment https://t.co/ccqaKYVO3Z</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/abierkhatib/status/1807966118956380256/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/amplify_video_thumb/1807966037020704768/img/A1DG-oSDEeAv476l.jpg">
</a>
<div class="caption">
<p>Nasser Hospital in Gaza 🇵🇸 is no longer a hospital.
It’s no longer a place of treatment and care.
It’s just a place the wounded or the dying go to for shelter.
It is terror. Israel 🇮🇱 is a terrorist state.
https://t.co/rtc4xBb1IC</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/Malcolm_Ishmeal/status/1807962101069369391/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/ext_tw_video_thumb/1807961973809991681/pu/img/pqAjdLYHV2YghJMN.jpg">
</a>
<div class="caption">
<p>9 months of the Genocide and Displacement. 💔🇵🇸
Where is Humanity???
Thousands of Human beings In Gaza nowhere to go Kids, toddlers, elderly, Are roaming the streets amid israeli airstrikes everywhere. https://t.co/sw1hj3DdSK</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/MiddleEastEye/status/1807959486872604928/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/ext_tw_video_thumb/1807959128997797889/pu/img/s6iwQMExAb5WdL85.jpg">
</a>
<div class="caption">
<p>The Israeli army on Monday issued a new evacuation order for parts of Khan Yunis and Rafah in southern Gaza, with witnesses reporting that many were fleeing.
Hundreds of thousands had already left Rafah ahead of and during a ground offensive launched by Israeli troops on the https://t.co/1ISF1zmeIJ</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/warfareanalysis/status/1807945655308148775/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/media/GRcc5mxb0AQSI7o.jpg">
</a>
<div class="caption">
<p>⚡️ families in Khan Yunis , Gaza Strip, don’t know where to go. They are fleeing to the streets due to the Israeli bombardment https://t.co/Q4FY92UVEh</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/WarWatchs/status/1807940005806866723/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/ext_tw_video_thumb/1807939073237307394/pu/img/WI6YZVOq-WBY8AVF.jpg">
</a>
<div class="caption">
<p>A child was killed in the Israeli bombing of a house in the Nuseirat camp in the central Gaza Strip. https://t.co/hkQpDzoLtQ</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/gazanotice/status/1807939723681288487/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/amplify_video_thumb/1807939652491661316/img/u-r7KUSE-NOlMSsD.jpg">
</a>
<div class="caption">
<p>This video is now from the destroved streets of Khan Younis. The displaced people have nowhere to go. https://t.co/Dhus8qgqaC</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/drrpalestine/status/1807928677126094890/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/ext_tw_video_thumb/1807928616920993794/pu/img/9IZweHurDz3BdId8.jpg">
</a>
<div class="caption">
<p>This isn't normal this is how they are killing people in Gaza https://t.co/UJ90G9SVEs</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/timand2037/status/1807921496352075793/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/ext_tw_video_thumb/1807921460553641984/pu/img/dBtI2I3Mi6cHeb4i.jpg">
</a>
<div class="caption">
<p>How babies die. From Dr Ali AlGhaliz in Gaza. Despite ICU doctors' best efforts, they could not save this little boy. https://t.co/Il6Y4VxtGZ</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/ZainAbbadi11/status/1807916625745924158/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/amplify_video_thumb/1807916506832949248/img/OhT114whZ4guvQHh.jpg">
</a>
<div class="caption">
<p>🚨Martyrs and wounded were reported as a result of the IOF's bombing eastern Khan Younis in the southern #Gaza Strip. https://t.co/1jvh7Py16E</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/dahrinoor2/status/1807915432394862739/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/amplify_video_thumb/1807915356972793856/img/1YbME3v9N1W1R4uW.jpg">
</a>
<div class="caption">
<p>I feel sorry for your loss if it is true.
Please blame this to #Hamas who used your family as a human shield. For Hamas, you were born to sacrifice not to live.
“Where is democracy?!” What are you talking about? Ask this question to Hamas, you elected Hamas in #Gaza which is https://t.co/xuJhAe6xSx</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/MuhammadSmiry/status/1807915033768174000/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/amplify_video_thumb/1807914962339172354/img/qnPXrvAGGtiasjBU.jpg">
</a>
<div class="caption">
<p>KHANYOUNIS THIS NIGHT | GAZA https://t.co/WGqLlKVpaF</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/OnlinePalEng/status/1807914106101412283/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/amplify_video_thumb/1807914035708678148/img/xLm9ybX7jKkrMHfy.jpg">
</a>
<div class="caption">
<p>“I promise to be your support now in his place, whatever you need, I will bring it to you.”
Standing before his father’s body who was killed in an Israeli airstrike in Gaza, a young Palestinian man trying to comfort his mother and sisters. https://t.co/o4vhEjNskr</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/MiddleEastEye/status/1807913098776400158/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/ext_tw_video_thumb/1807912605958254592/pu/img/AXGD5CeTJWNW-u7h.jpg">
</a>
<div class="caption">
<p>In new exclusive footage obtained by Al-Jazeera, Palestinian prisoners appear as human shields for Israeli soldiers in Gaza.The footage shows two instances where Palestinian prisoners were forced to search destroyed buildings in Gaza while being monitored by cameras and https://t.co/stzEc8y31u</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/sarabahaa94/status/1807910149274661288/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/ext_tw_video_thumb/1807909991262965762/pu/img/trpQRHUDbopqbB_L.jpg">
</a>
<div class="caption">
<p>A night like hell for Khan Younis and Gaza.
In addition to displacement, the martyrs and injuries are everywhere now.
This is a very harsh night; do not forget them. https://t.co/kQSWjRznrA</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/NourNaim88/status/1807908934176424204/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/ext_tw_video_thumb/1807908880455696384/pu/img/0rVpUCKdCIHnSxUH.jpg">
</a>
<div class="caption">
<p>\\"My beloved daughter, my soul, my child, I wish I could be with you ”
🚨Painful: a father says goodbye to his daughter killed by an Israeli airstrike on their home in #Gaza. https://t.co/mxJdDherKy</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/SprinterFamily/status/1807907225639268715/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/ext_tw_video_thumb/1807907192386818048/pu/img/4zhPhyoBrjFv5wBq.jpg">
</a>
<div class="caption">
<p>❤️🩹 The children of Gaza deserve a peaceful and dignified life. https://t.co/MEi3FVf5Vr</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/HalaJaber/status/1807903704684642806/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/media/GRb2wlvWUAAeetY.jpg">
</a>
<div class="caption">
<p>IMPORTANT:
On the move again, displaced #Palestinians in #Gaza are forced to re-displace for the umpteenth time following warnings by the IOF to evacuate ##Khan_Yunis. https://t.co/Kag9iShHJj</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/Bernadotte22/status/1807903193755529284/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/ext_tw_video_thumb/1807903038079639552/pu/img/d9Zk7XYHU-dhiBkt.jpg">
</a>
<div class="caption">
<p>Gaza now💔💔 https://t.co/89X61xBmf7</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/stairwayto3dom/status/1807900448520564997/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/amplify_video_thumb/1807900289099616261/img/3_mXbPlcK5nZ_kv9.jpg">
</a>
<div class="caption">
<p>💔🇵🇸 Israel has forced SICK and WOUNDED children and civilians onto the STREETS in Gaza! https://t.co/EjG2SIkGE0</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/SprinterFamily/status/1807900131628667140/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/ext_tw_video_thumb/1807900088884191232/pu/img/4BxPDIHNRtC3Jdn4.jpg">
</a>
<div class="caption">
<p>The Israeli forces completely destroyed the Rafah border crossing between Gaza and Egypt. https://t.co/3VVkZQqFIw</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/Bernadotte22/status/1807895854444879995/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/ext_tw_video_thumb/1807895815601475584/pu/img/svDvkG3CP0yJEj3j.jpg">
</a>
<div class="caption">
<p>PRCS Al-Amal Hospital in Khan Younis is now overcrowded with injuries following the Israeli occupation's warning to evacuate the Al-Fukhari area, where the European Gaza Hospital is located. Ambulance crews transported the injured from Nasser Hospital after it also became https://t.co/XE1U9LaUeM</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/NourNaim88/status/1807893654318555628/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/ext_tw_video_thumb/1807893593786339328/pu/img/3lLqALLY8g-Ekt3p.jpg">
</a>
<div class="caption">
<p>The woman: “Have you seen my husband, Khaled?”
The freed prisoner: “Yes, he’s alive and well. Tell me about Khaled and Mahmoud,did they get killed?”
In #Gaza, people learn about their abducted loved ones from freed prisoners ,who inform them about those killed during captivity‼️ https://t.co/KVc7v4qvY1</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/QudsNen/status/1807890443947983115/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/ext_tw_video_thumb/1807890391011938305/pu/img/8dwUmTJntC97kuxc.jpg">
</a>
<div class="caption">
<p>A child has been one of the victims of Israel's strikes on Al Nuseirat refugee camp in central Gaza. https://t.co/5R0tXRiXYa</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/SprinterFamily/status/1807882866543808857/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/ext_tw_video_thumb/1807882847526506496/pu/img/aW-0_8qocb4WGgEC.jpg">
</a>
<div class="caption">
<p>\\"Save us from hunger\\"
Palestinian children in the northern Gaza Strip https://t.co/8yjGlHii50</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/SprinterFamily/status/1807882466058797238/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/ext_tw_video_thumb/1807882425239810048/pu/img/cYH1bdSt0fci0NVH.jpg">
</a>
<div class="caption">
<p>Ali Darwish, an autistic child, suffered injuries to his spine and legs as a result of brutal Israeli airstrikes in the Gaza Strip.
Source: Quds News Network https://t.co/TZdMWBUKr2</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/SuppressedNws/status/1807881800561447189/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/media/GRbi0mIXEAAzzjd.jpg">
</a>
<div class="caption">
<p>🚨BREAKING: Hundreds of displaced families are evacuating Khan Yunis due to Israeli military threats. Patients and families at Gaza's European Hospital in Khan Yunis are also being evacuated in response to these threats. https://t.co/c5N8mDpRjs</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="https://twitter.com/Bernadotte22/status/1807869437233541407/video/1" target="_blank" rel="noopener noreferrer">
<img src="https://pbs.twimg.com/amplify_video_thumb/1807869358498369541/img/EM3rsXFBUcPMSaYD.jpg">
</a>
<div class="caption">
<p>Gaza is experiencing the worst famine ever. Save the remaining children of Gaza💔 https://t.co/20LTNtShky</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">