-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
854 lines (715 loc) · 43.1 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Best Location</title>
<link rel="icon" type="image/x-icon" href="images/logo.jpg">
<meta name="description" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" />
<link rel="stylesheet" href="css/all.css">
<link rel="stylesheet" href="css/style.css">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
</head>
<body class="">
<section id="iconsForInformation"
class="position-fixed d-flex flex-column justify-content-between align-items-end display-4 h-50" >
<a href="#"><i class="fa-brands fa-linkedin mr-lg-5 mr-md-3 "></i> </a>
<a href="#"><i class="fa-brands fa-square-whatsapp mr-lg-5 mr-md-3 "></i></a>
<a href="#"><i class="fa-brands fa-square-facebook mr-lg-5 mr-md-3 "></i></a>
<a href="#"><i class="fa-brands fa-square-instagram mr-lg-5 mr-md-3 "></i></a>
<a href="#"><i class="fa-brands fa-square-twitter mr-lg-5 mr-md-3 "></i></a>
</section>
<!-- Navigation Bar -->
<nav class="navbar navbar-expand-md navbar-dark text-white-50 fixed-top" id="navBar">
<!-- part 1 => Logo -->
<img src="images/logo.jpg" width="50" height="50" class="rounded-circle mr-1" alt="">
<a href="" class="navbar-brand m-0 mr-1 text-uppercase">syria</a>
<div id="vr" class=""></div>
<!-- part 2 = > another part in state collapse and no -->
<button class="navbar-toggler btn border-black" type="button" data-toggle="collapse"
data-target="#collapsNavBar">
<i class="fa-solid fa-bars"></i>
</button>
<div class="collapse navbar-collapse justify-content-between" id="collapsNavBar">
<!-- links in part 2 -->
<ul class="navbar-nav justify-content-center ">
<li class="nav-item"><a href="" class="nav-link">Home</a></li>
<li class="nav-item"><a href="" class="nav-link mx-sm-2 my-2 my-sm-0 ">link</a></li>
<!-- Dropdown link -->
<li class="requir nav-item dropdown position-relative">
<button class=" btn btn-outline-primary bg-white text-black-50 px-0 dropdown-toggle "
data-toggle="dropdown">
<span class="redscale">T</span>rips
</button>
<div class="dropdown-menu bg-light position-absolute text-uppercase" id="fontHover">
<a href="" class="dropdown-item ">damascuse</a>
<a href="" class="dropdown-item ">palmira</a>
<a href="" class="dropdown-item ">omayad mosque</a>
<div class="dropdown-divider"></div>
<a href="" class="dropdown-item ">aleppo citadel</a>
<a href="" class="dropdown-item ">al-hamidiyah souq</a>
</div>
</li>
<li class="nav-item"><a href="" class="nav-link">About</a></li>
</ul>
<!-- ipnut field in part 2 -->
<form class="form-inline">
<input class="form-control my-3 my-sm-0" type="text" placeholder="Search">
<button class="btn btn-outline-primary mx-2 mx-sm-2 " type="button">Search</button>
<button type="button" class="btn btn-outline-primary text-capitalize" data-toggle="modal"
data-target="#exampleModal" data-whatever="@getbootstrap">log in</button>
</form>
</div>
</nav>
<!-- define environment carousel -->
<main class="carousel slide " id="carousel" data-ride="carousel">
<!-- indicators -->
<ul class="carousel-indicators">
<li data-target=".slide" data-slide-to="0" class="active"></li>
<li data-target=".slide" data-slide-to="1"></li>
<li data-target=".slide" data-slide-to="2"></li>
<li data-target=".slide" data-slide-to="3"></li>
<li data-target=".slide" data-slide-to="4"></li>
</ul>
<!-- images -->
<div class="carousel-inner">
<div class="carousel-item active" data-interval="2000">
<img src="images/Carousel/damascuse.jpg" alt="">
<div class="carousel-caption d-none d-sm-block" id="bg-opacity">
<h5 class="display-4 text-capitalize">damascuse</h5>
<p>Damascus is the capital and largest city of Syria, the oldest current capital in the world and,
according to some, the fourth holiest city in Islam.</p>
<button class="btn btn-primary">visit us</button>
</div>
</div>
<div class="carousel-item" data-interval="2000">
<img src="images/Carousel/Aleppo Citadel.jpg" alt="">
<div class="carousel-caption d-none d-sm-block" id="bg-opacity">
<h5 class="display-4 text-capitalize">aleppo citadel</h5>
<p>
The citadel was built on a natural limestone outcropping rising some 100 feet (30 meters) above
the level of the surrounding plain.</p>
<button class="btn btn-primary">visit us</button>
</div>
</div>
<div class="carousel-item" data-interval="2000">
<img src="images/Carousel/Damascus Umayyad Mosque.jpg" alt="">
<div class="carousel-caption d-none d-sm-block" id="bg-opacity">
<h5 class="display-4 text-capitalize">damascus umayyad mosque</h5>
<p>Located in the old city of Damascus, the capital of Syria, is one of the largest and oldest
mosques in the world.</p>
<button class="btn btn-primary">visit us</button>
</div>
</div>
<div class="carousel-item" data-interval="2000">
<img src="images/Carousel/Site of Palmyra.jpg" alt="">
<div class="carousel-caption d-none d-sm-block z-n1 " id="bg-opacity">
<h5 class="display-4 text-capitalize">site of palmyra</h5>
<p>An oasis in the Syrian desert, north-east of Damascus, Palmyra contains the monumental ruins of a
great city that was one of the most important cultural centres of the ancient world.</p>
<button class="btn btn-primary">visit us</button>
</div>
</div>
<div class="carousel-item" data-interval="2000">
<img src="images/Carousel/al-hamidiyah souq.jpg" alt="">
<div class="carousel-caption d-none d-sm-block z-n1 " id="bg-opacity">
<h5 class="display-4 text-capitalize">al hamidiyah souq</h5>
<p>The Al-Hamidiyeh Souq is the largest and the central souk in Syria, located inside the old walled
city of Damascus next to the Citadel.</p>
<button class="btn btn-primary">visit us</button>
</div>
</div>
</div>
<!-- controls next and prev -->
<button data-target=".slide" class="carousel-control-prev" data-slide="prev">
<span class="carousel-control-prev-icon"></span>
</button>
<button data-target=".slide" class="carousel-control-next" data-slide="next">
<span class="carousel-control-next-icon"></span>
</button>
</main> <!-- /carousel -->
<!-- define window Log In when click -->
<div class="modal fade" id="exampleModal" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header bg-primary text-white">
<h5 class="modal-title text-capitalize" id="exampleModalLabel">log in</h5>
<button type="button" class="btn btn-blue bg-primary p-1 m-1 bg-light tx= close "
data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<form class="part-ipnut-information">
<label class="mx-3">Enter address :</label>
<input type="text " required class="form-control">
<p class="special-msg"></p>
<label class="mx-3">Password :</label>
<input type="text" required class="form-control">
<div class="Remmember-me d-flex">
<div class="custom-control custom-switch my-3">
<input type="checkbox" class="custom-control-input" id="customSwitch1">
<label class="custom-control-label" for="customSwitch1">Remmember me</label>
</div>
</div>
</form>
<div class="modal-footer d-flex justify-content-between">
<button type="button" class="btn btn-primary" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Log In</button>
</div>
</div>
</div>
</div>
</div>
<section class="container-fluid bg-primary rounded-bottom">
<section class="container p-1">
<h3 id="title" class="text-uppercase text-white">welcome</h3>
<p class="text-black bold">Syria, officially the Syrian Arab Republic, is a country in West Asia
located in the Eastern Mediterranean and the Levant. Within the region of the Middle East, it is bounded
by the Mediterranean Sea to the west, Turkey to the north, Iraq to the east and southeast, Jordan to the
south, and Israel and Lebanon to the southwest. It is a republic that consists of 14 governorates as
subdivisions. Damascus is Syria's capital and largest city. With a population of 25.0 million, it is the
57th most populous country in the world and 8th most populous in the Arab world. Syria is spread across
an area of 185,180 square kilometres (71,500 sq mi), making it 87th largest country in the world.</p>
<button class="btn btn-secondary text-capitalize border border-black ">learn me</button>
</section>
</section>
<!-- /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
<!-- Accordion -->
<hr class="">
<section id="accordion" class="container-xxl">
<div id="titleAccordion" class="bg-primary text-white rounded display-4 py-5 text-center text-capitalize">
popular destination in syria
</div>
<div class="accordion" id="sectionAccordion">
<div class="card">
<div class="card-header shadow" id="headingOne">
<h2 class="mb-0">
<div class="btn btn-block text-decoration-none text-left d-flex justify-content-between"
role="button" data-toggle="collapse" data-target="#collapseOne" aria-expanded="true"
aria-controls="collapseOne">
The Syrian Desert
<i class="fa-solid fa-chevron-down a1" id="buttonRotate"></i>
</div>
</h2>
</div> <!-- /headingOne
-->
<div id="collapseOne" class="collapse " aria-labelledby="headingOne" data-parent="#sectionAccordion">
<div class="card-body">
The Syrian Desert (Arabic: بادية الشام Bādiyat Ash-Shām), also known as the North Arabian
Desert, the Jordanian steppe, or the Badiya, is a region of desert, semi-desert, and steppe,
covering approx.</div>
</div>
</div> <!-- /card -->
<div class="card">
<div class="card-header shadow" id="headingTwo">
<h2 class="mb-0">
<div class="btn btn-block text-decoration-none text-left d-flex justify-content-between"
role="button" data-toggle="collapse" data-target="#collapseTwo" aria-expanded="false"
aria-controls="collapseTwo">
Sanctuary of Bel
<i class="fa-solid fa-chevron-down a1" id="buttonRotate"></i>
</div>
</h2>
</div> <!-- /headingTwo -->
<div id="collapseTwo" class="collapse" aria-labelledby="headingTwo" data-parent="#sectionAccordion">
<div class="card-body">
The Temple of Bel (Arabic: معبد بعل), sometimes also referred to as the "Temple of Baal", was an
ancient temple located in Palmyra, Syria. The temple, consecrated to the Mesopotamian god Bel,
worshipped at Palmyra in triad with the lunar god Aglibol and the sun god Yarhibol, formed the
center of religious life in Palmyra and was dedicated in AD 32.
</div>
</div>
</div> <!-- /card -->
<div class="card">
<div class="card-header shadow" id="headingThree">
<h2 class="mb-0">
<div class="btn btn-block text-decoration-none text-left d-flex justify-content-between"
role="button" data-toggle="collapse" data-target="#collapseThree" aria-expanded="false"
aria-controls="collapseThree">
Arwad Island
<i class="fa-solid fa-chevron-down a1" id="buttonRotate"></i>
</div>
</h2>
</div> <!-- /headingThree -->
<div id="collapseThree" class="collapse" aria-labelledby="headingThree" data-parent="#sectionAccordion">
<div class="card-body">
Arwad (Phoenician: 𐤀𐤓𐤅𐤃, romanized: ʾrwd; Arabic: أرواد, romanized: ʾArwād), the classical
Aradus, is a town in Syria on an eponymous island in the Mediterranean Sea. It is the
administrative center of the Arwad Subdistrict (nahiyah), of which it is the only locality.[1]
It is the only inhabited island in Syria. It is located 3 km (1.9 mi) from Tartus (the ancient
Tortosa), Syria's second-largest port.
</div>
</div>
</div> <!-- /card -->
</div> <!-- /sectionAccordion -->
</section>
<!-- ///////////////////////////////////////////////////////////////////////////////////////////////// -->
<!-- Section translate -->
<hr class="bg-dark">
<section id="sectionTranslate" class="text-capitalize container-fluid ">
<div class="">
<div id="titleSection"
class="border border-primary bg-primary rounded text-center text-white display-4 shadow pb-3 ">
Transalte from arabic to english</div>
<section class=" p-3 rounded-bottom bg-info" id="parent">
<span id="captionToSection" class="d-block"><span id="note" class="text-white">write and
translate</span>
press here</span>
<div class="">
<button id='copy-button' class='my-tool-tip btn btn-light my-3' data-toggle="tooltip"
data-placement="right" title="Copy to Clipboard">
Copy
</button>
</div>
<textarea placeholder="Translate" class="d-block w-100" rows="7" id="orederText"></textarea>
</section>
</div>
<hr class="bg-dark">
<div class="">
<div id="titleSection"
class="border border-primary bg-primary rounded text-center text-white display-4 shadow pb-3 ">
Transalte from arabic to french</div>
<section class=" p-3 rounded-bottom bg-info" id="parent">
<span id="captionToSection" class="d-block"><span id="note" class="text-white">write and
translate</span>
press here</span>
<div class="">
<button id='copy-button' class='my-tool-tip btn btn-light my-3' data-toggle="tooltip"
data-placement="right" title="Copy to Clipboard">
Copy
</button>
</div>
<textarea placeholder="Translate" class="d-block w-100" rows="7" id="orederText"></textarea>
</section>
</div>
<hr class="bg-dark">
<div class="">
<div id="titleSection"
class="border border-primary bg-primary rounded text-center text-white display-4 shadow pb-3 ">
Transalte from arabic to german</div>
<section class=" p-3 rounded-bottom bg-info" id="parent">
<span id="captionToSection" class="d-block"><span id="note" class="text-white">write and
translate</span>
press here</span>
<div class="">
<button id='copy-button' class='my-tool-tip btn btn-light my-3' data-toggle="tooltip"
data-placement="right" title="Copy to Clipboard">
Copy
</button>
</div>
<textarea placeholder="Translate" class="d-block w-100" rows="7" id="orederText"></textarea>
</section>
</div>
<hr class="bg-dark">
</section>
<!-- ///////////////////////////////////////////////////////////////////////////////////////////////// -->
<!-- background img -->
<section id="img_in_background1" class=" border-black "></section>
<!-- ////////////////////////////////////////////////////////////////////////////////////////// -->
<!-- cards -->
<div id="titleAccordion" class="bg-primary text-white rounded display-4 py-3 mb-5 text-center text-capitalize">
popular destination in syria
</div>
<section class=" row justify-content-around container-fluid ">
<div class="card col-xl-3 col-md-5 col-sm-12 ml-1 mb-5 position-relative rounded" id="card-item">
<img class="card-img-top rounded-top" height="240px"
src="images/popular destination/Bab Al-Faradis - Old Damascus.jpg" alt="Card image">
<div class="card-body" id="body">
<div class="row justify-content-between" id="titleCard-with-btn">
<h4 class="card-title text-capitalize">bab al faradis</h4>
<a href="#" class="btn btn-primary">See Profile</a>
</div>
<p class="card-text text-center">One of the old gates of Damascus on the northern side of the wall,
between Bab al-Salam and Bab al-Faraj.
</p>
</div>
</div>
<div class="card col-xl-3 col-md-5 col-sm-12 ml-1 mb-5 position-relative rounded" id="card-item">
<img class="card-img-top rounded-top " height="240px" src="images/popular destination/Bab_al-Saghir.jpg"
alt="Card image">
<div class="card-body">
<div class="row justify-content-between" id="titleCard-with-btn">
<h4 class="card-title text-capitalize">bab al saghir</h4>
<a href="#" class="btn btn-primary">See Profile</a>
</div>
<p class="card-text text-center">Known among the people as Bab al-Saghir, it is one of the seven Roman
gates of Damascus in Syria.</p>
</div>
</div>
<div class="card col-xl-3 col-md-5 col-sm-12 ml-1 mb-5 position-relative rounded" id="card-item">
<img class="card-img-top rounded-top " height="240px"
src="images/popular destination/Damascus_Bab_al-Faraj_1616.jpg" alt="Card image">
<div class="card-body">
<div class="row justify-content-between" id="titleCard-with-btn">
<h4 class="card-title text-capitalize">bab al faraj</h4>
<a href="#" class="btn btn-primary">See Profile</a>
</div>
<p class="card-text text-center">One of the gates of Damascus that were built in the Islamic era on the
northern side of the wall to the west of Bab al-Faradis, opened by Nur al-Din al-Shahid in the sixth
century AH.</p>
</div>
</div>
<div class="card col-xl-3 col-md-5 col-sm-12 ml-1 mb-5 position-relative rounded" id="card-item">
<img class="card-img-top rounded-top " height="240px"
src="images/popular destination/Bab_Kisan_-_Chapel_of_St._Paul.jpg" alt="Card image">
<div class="card-body">
<div class="row justify-content-between" id="titleCard-with-btn">
<h4 class="card-title text-capitalize">bab kisan</h4>
<a href="#" class="btn btn-primary">See Profile</a>
</div>
<p class="card-text text-center">It is currently located at the end of Ibn Asaker Street from the east.
During the Roman era, the gates of Damascus were named after planets.</p>
</div>
</div>
<div class="card col-xl-3 col-md-5 col-sm-12 ml-1 mb-5 position-relative rounded" id="card-item">
<img class="card-img-top rounded-top " height="240px"
src="images/popular destination/Damascus_Bab_al-Jabiyeh_2895.jpg" alt="Card image">
<div class="card-body">
<div class="row justify-content-between" id="titleCard-with-btn">
<h4 class="card-title text-capitalize">bab al jabiyeh</h4>
<a href="#" class="btn btn-primary">See Profile</a>
</div>
<p class="card-text text-center">One of the Roman gates of Damascus on the western side of the city, it
is dedicated to the planet Jupiter, which represents the god (Jupiter). It had three gates, the
central one was large, and on its sides were two smaller gates.</p>
</div>
</div>
<div class="card col-xl-3 col-md-5 col-sm-12 ml-1 mb-5 position-relative rounded" id="card-item">
<img class="card-img-top rounded-top " height="240px" src="images/popular destination/DamascusBabTouma.jpg"
alt="Card image">
<div class="card-body">
<div class="row justify-content-between" id="titleCard-with-btn">
<h4 class="card-title text-capitalize">bab touma</h4>
<a href="#" class="btn btn-primary">See Profile</a>
</div>
<p class="card-text text-center">Bab Touma was named after Saint Thomas, one of the twelve apostles of
Christ, as Damascus was a destination and starting point for the apostles and saints throughout
history.</p>
</div>
</div>
<div class="card col-xl-3 col-md-5 col-sm-12 ml-1 mb-5 position-relative rounded" id="card-item">
<img class="card-img-top rounded-top " height="240px" src="images/popular destination/East door.jpg"
alt="Card image">
<div class="card-body">
<div class="row justify-content-between" id="titleCard-with-btn">
<h4 class="card-title text-capitalize">east door</h4>
<a href="#" class="btn btn-primary">See Profile</a>
</div>
<p class="card-text text-center">The Bab Sharqi area was named after him. The gate is located on the
eastern side of the old city of Damascus, at the intersection of the Straight Road mentioned in the
Bible - the Holy Book - or Bab Sharqi Street.</p>
</div>
</div>
<div class="card col-xl-3 col-md-5 col-sm-12 ml-1 mb-5 position-relative rounded" id="card-item">
<img class="card-img-top rounded-top " height="240px" src="images/popular destination/Victory Gate.jpg"
alt="Card image">
<div class="card-body">
<div class="row justify-content-between" id="titleCard-with-btn">
<h4 class="card-title text-capitalize">victory gate</h4>
<a href="#" class="btn btn-primary">See Profile</a>
</div>
<p class="card-text text-center">Bab al-Nasr was one of the gates of Damascus on the western side of the
wall at the entrance to the Hamidiyeh Souq.Its construction was disputed between Nur ad-Din
al-Shahid and the Mamluk king al-Nasir Muhammad ibn Qalawun.</p>
</div>
</div>
</section>
<section id="img_in_background2" class=" border-black mb-5"></section>
<hr class="">
<div id="titleAccordion" class="bg-primary text-white rounded display-4 py-3 text-center text-uppercase mb-3">
thanks for
</div>
<!-- ///////////////////////////////////////////////////////////////////////////////////// -->
<!-- Cards thank -->
<section class="container">
<section class=" row justify-content-between text-white">
<div class="card col-xl-3 col-md-12 ml-1 mb-5 p-0 rounded" id="card-item-for-thank">
<img class="card-img-top h-100" src="images/thank card/E.Motaz.jpg" alt="Card image">
<div class="card-img-overlay d-flex flex-column justify-content-between" id="overlay-img">
<div class="">
<h4 class="card-title text-capitalize">all thanks and appreciation</h4>
<p class="card-text"> <i class="fa-solid fa-clock mr-1"></i>
October 15,2020</p>
</div>
<div class="">
<img src="images/thank card/E.Motaz.jpg" width="85" height="125" alt=""
class="rounded-circle border-secondary " id="img-circle">
<p class="card-text">
<span class=" text-capitalize" id="image-name">eng.motaz abo assi</span>
<br>
<span class="" id="image-work">Director of UI/UX</span>
</p>
</div>
</div>
</div>
<div class="card col-xl-3 col-md-12 ml-1 mb-5 p-0 rounded" id="card-item-for-thank">
<img class="card-img-top h-100" src="images/thank card/E.Naef.jpg" alt="Card image">
<div class="card-img-overlay d-flex flex-column justify-content-between" id="overlay-img">
<div class="">
<h4 class="card-title text-capitalize ">all thanks and appreciation</h4>
<p class="card-text"> <i class="fa-solid fa-clock mr-1"></i>
October 15,2020</p>
</div>
<div class="">
<img src="images/thank card/E.Naef.jpg" width="85" height="125" alt=""
class="rounded-circle border-secondary " id="img-circle">
<p class="card-text">
<span class=" text-capitalize" id="image-name">eng.Naef Geba</span>
<br>
<span class="" id="image-work">Director of React</span>
</p>
</div>
</div>
</div>
<div class="card col-xl-3 col-md-12 ml-1 mb-5 p-0 rounded" id="card-item-for-thank">
<img class="card-img-top h-100" src="images/thank card/E.Nour.jpg" alt="Card image">
<div class="card-img-overlay d-flex flex-column justify-content-between" id="overlay-img">
<div class="">
<h4 class="card-title text-capitalize ">all thanks and appreciation</h4>
<p class="card-text"> <i class="fa-solid fa-clock mr-1"></i>
October 15,2020</p>
</div>
<div class="">
<img src="images/thank card/E.Nour.jpg" width="85" height="125" alt=""
class="rounded-circle border-secondary " id="img-circle">
<p class="card-text">
<span class=" text-capitalize" id="image-name">eng.Nour Adin Serdar</span>
<br>
<span class="" id="image-work">Director of Node.JS</span>
</p>
</div>
</div>
</div>
</section>
</section>
<!-- ////////////////////////////////////////////////////////////////////////////////////////////////// -->
<!-- Card News -->
<div id="titleAccordion" class="py-3 text-center text-uppercase mb-3 h1">
syria news
</div>
<section class=" container-fluid row m-auto" id="CardNews">
<section class="col-12 p-0" id="container-CardNews">
<div class="card col-12 pl-0 mb-5 shadow-lg" id="card-news">
<div class="row no-gutters">
<div class="col-xl-4 col-md-12 overflow-hidden">
<img src="images/News/Kew in the spotlight The Royal Botanic Gardens prepares for the festive season with a special celebration.webp"
class="w-100 h-100" alt="..." id="img-sidebar">
</div>
<div class="col-xl-8 col-md-12 d-flex flex-column justify-content-between p-3">
<div class="card-body px-0">
<h3 class="card-title">Kew in the spotlight The Royal Botanic Gardens prepares for the
festive season with a special celebration</h3>
<p class="card-text mb-0 " id="detailMore"> <i
class="fa-solid fa-calendar-days mr-1"></i>Mon, May 25th 2020</p>
<div class="rounded-pill my-2 bg-danger" id="progress-dynamic"></div>
<p class="card-text">The Royal Botanic Gardens, Kew, a UNESCO World Heritage Site in the
United Kingdom, is celebrating the festive season with a major sound and light show
called Christmas at Kew.</p>
</div>
<div id="btns">
<button class="btn btn-secondary" id=""><i class="fa-solid fa-tags mr-1 mt"></i>Product</button>
<button class="btn btn-secondary" id=""><i class="fa-solid fa-clock mr-1 mt"></i>55min</button>
<button class="btn btn-secondary" id="pointer red"><i class="fa-solid fa-play mr-1"></i>Play Episode</button>
</div>
</div>
</div>
</div> <!-- /card-news -->
<div class="card col-12 pl-0 mb-5 shadow-lg" id="card-news">
<div class="row no-gutters">
<div class="col-xl-4 col-md-12 overflow-hidden">
<img src="images/News/Launching an awareness campaign on the cultural importance of museums.jpeg"
class="w-100 h-100" alt="..." id="img-sidebar">
</div>
<div class="col-xl-8 col-md-12 d-flex flex-column justify-content-between p-3">
<div class="card-body px-0">
<h3 class="card-title">Launching an awareness campaign on the cultural importance of museums
</h3>
<p class="card-text mb-0 " id="detailMore"> <i
class="fa-solid fa-calendar-days mr-1"></i>Mon, May 25th 2020</p>
<div class="rounded-pill my-2 bg-success" id="progress-dynamic"></div>
<p class="card-text">Launching an awareness campaign on the cultural importance of museums
The Museums Authority announced the launch of the “We Narrate Tomorrow” campaign, which
aims to raise awareness of the role of museums in preserving history and cultural
heritage, enhancing national identity, and encouraging artistic creativity.</p>
</div>
<div id="btns">
<button class="btn btn-secondary" id=""><i class="fa-solid fa-tags mr-1 mt"></i>Product</button>
<button class="btn btn-secondary" id=""><i class="fa-solid fa-clock mr-1 mt"></i>55min</button>
<button class="btn btn-secondary" id="pointer green"><i class="fa-solid fa-play mr-1"></i>Play Episode</button>
</div>
</div>
</div>
</div> <!-- /card-news -->
<div class="card col-12 pl-0 mb-5 shadow-lg" id="card-news">
<div class="row no-gutters">
<div class="col-xl-4 col-md-12 overflow-hidden">
<img src="images/News/The Syrian National Museum opens its doors to the public.jpg"
class="w-100 h-100" alt="..." id="img-sidebar">
</div>
<div class="col-xl-8 col-md-12 d-flex flex-column justify-content-between p-3">
<div class="card-body px-0">
<h3 class="card-title">The Syrian National Museum opens its doors to the public</h3>
<p class="card-text mb-0 " id="detailMore"> <i
class="fa-solid fa-calendar-days mr-1"></i>Mon, May 25th 2020</p>
<div class="rounded-pill my-2 bg-primary" id="progress-dynamic"></div>
<p class="card-text">Part of the Syrian National Museum has reopened to the public after
being closed for about six years due to the ongoing civil war there.
The famous antiquities museum in Damascus was closed in 2012 to protect the ancient
artifacts it contained.</p>
</div>
<div id="btns">
<button class="btn btn-secondary" id=""><i class="fa-solid fa-tags mr-1 mt"></i>Product</button>
<button class="btn btn-secondary" id=""><i class="fa-solid fa-clock mr-1 mt"></i>55min</button>
<button class="btn btn-secondary" id="pointer blue"><i class="fa-solid fa-play mr-1"></i>Play Episode</button>
</div>
</div>
</div>
</div> <!-- /card-news -->
<div class="card col-12 pl-0 mb-5 shadow-lg" id="card-news">
<div class="row no-gutters">
<div class="col-xl-4 col-md-12 overflow-hidden">
<img src="images/News/The National Museum in Damascus continues to receive visitors during the holidays.jpg"
class="w-100 h-100" alt="..." id="img-sidebar">
</div>
<div class="col-xl-8 col-md-12 d-flex flex-column justify-content-between p-3">
<div class="card-body px-0">
<h3 class="card-title">The National Museum in Damascus continues to receive visitors during
the holidays</h3>
<p class="card-text mb-0 " id="detailMore"> <i
class="fa-solid fa-calendar-days mr-1"></i>Mon, May 25th 2020</p>
<div class="rounded-pill my-2 bg-warning" id="progress-dynamic"></div>
<p class="card-text">The National Museum in Damascus continues to receive visitors during
holidays until the end of the current year except Friday.
Visit is also open to the public for the annual exhibition of the days of plastic arts
held by the Ministry of Culture in the museum.</p>
</div>
<div id="btns">
<button class="btn btn-secondary" id=""><i class="fa-solid fa-tags mr-1 mt"></i>Product</button>
<button class="btn btn-secondary" id=""><i class="fa-solid fa-clock mr-1 mt"></i>55min</button>
<button class="btn btn-secondary" id="pointer waring"><i class="fa-solid fa-play mr-1"></i>Play Episode</button>
</div>
</div>
</div>
</div> <!-- /card-news -->
</section> <!-- /container-CardNews -->
</section> <!-- /CardNews -->
<!-- //////////////////////////////////////////////////////////////////////////////////// -->
<!-- Icons -->
<div id="titleAccordion" class="py-3 text-center text-uppercase mb-3 h1">
join us
</div>
<section class="row justify-content-around container mx-auto my-3">
<a href="#" title="subsucribe now by Twitter"
class="m-3 text-decoration-none text-info border col-xl-2 col-md-12 text-center shadow-lg d-flex flex-column justify-content-center align-self-center"
id="">
<p class="text-capitalize">subsucribe now</p>
<div class="shadow-lg m-auto" id="conatinerIcon">
<div class="icon-container ">
<i class="fab fa-twitter"></i>
</div>
</div>
<p class="" id="">Go to link</p>
</a>
<a href="#" title="subsucribe now by WhatsApp"
class="m-3 text-decoration-none text-info border col-xl-2 col-md-12 text-center shadow-lg d-flex flex-column justify-content-center align-self-center"
id="">
<p class="text-capitalize">follow</p>
<div class="shadow m-auto" id="conatinerIcon">
<div class="icon-container ">
<i class="fa-brands fa-whatsapp"></i>
</div>
</div>
<p class="" id="">Go to link</p>
</a>
<a href="#" title="subsucribe now by LinkedIn"
class="m-3 text-decoration-none text-info border col-xl-2 col-md-12 text-center shadow-lg d-flex flex-column justify-content-center align-self-center"
id="">
<p class="text-capitalize">like the page</p>
<div class="shadow m-auto" id="conatinerIcon">
<div class="icon-container ">
<i class="fa-brands fa-linkedin-in"></i>
</div>
</div>
<p class="" id="">Go to link</p>
</a>
<a href="#" title="subsucribe now by Instagram"
class="m-3 text-decoration-none text-info border col-xl-2 col-md-12 text-center shadow-lg d-flex flex-column justify-content-center align-self-center"
id="">
<p class="text-capitalize">watch video</p>
<div class="shadow m-auto" id="conatinerIcon">
<div class="icon-container ">
<i class="fa-brands fa-instagram"></i>
</div>
</div>
<p class="" id="">Go to link</p>
</a>
</section>
<!-- //////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
<!-- footer -->
<section class="footer container-fluid bg-primary">
<section id="moreInformation" class="row">
<div class="col-xl-4 col-md-12 text-center text-white">
<hr class="bg-white">
<div class="row justify-content-center">
<img src="images/logo.jpg" width="100" height="100" class="rounded-circle shadow" alt="">
<p id="captionImg" class="text-capitalize align-self-center ml-3">good company</p>
</div>
<hr class="bg-white">
<div>
<p>Tel : 00 0-000-000</p>
<p>Address: SYRIA</p>
<p>Fax: 000-000-000</p>
</div>
</div>
<div class="col-xl-4 col-md-12 text-center text-white">
<hr class="bg-white">
<div class="row justify-content-center">
<img src="images/logo.jpg" width="100" height="100" class="rounded-circle shadow" alt="">
<p id="captionImg" class="text-capitalize align-self-center ml-3">important link</p>
</div>
<hr class="bg-white">
<div class="text-white ">
<a href="#" class="text-white d-block mb-3 text-decoration-none">Visit Us</a>
<a href="#" class="text-white d-block mb-3 text-decoration-none">Take alook</a>
<a href="#" class="text-white d-block mb-3 text-decoration-none">Your health is more important</a>
</div>
</div>
<div class="col-xl-4 col-md-12 text-center text-white">
<hr class="bg-white">
<div class="row justify-content-center">
<img src="images/logo.jpg" width="100" height="100" class="rounded-circle shadow" alt="">
<p id="captionImg" class="text-capitalize align-self-center ml-3">vision</p>
</div>
<hr class="bg-white">
<div>
<p>Server for all</p>
<p>Provide best serveices</p>
<p>you will be better than before</p>
</div>
</div>
</section>
<hr class="bg-white">
<p class="text-center h4">COPYRIGHT © 2025 MOTAZ FERAS ABO ASSI, GOOD COMPANY, ALL RIGHTS</p>
<hr class="bg-white">
<br>
</section>
<script src="js/script.js"></script>
<script>
$(function () {
$('[data-toggle="tooltip"]').tooltip()
});
$('.my-tool-tip').click(function () {
$(this).attr("data-original-title", "Copied");
$(this).tooltip('show');
});
$('.my-tool-tip').mouseout(function () {
$(this).attr("data-original-title", "Copy To ClipBoard");
});
</script>
</body>
</html>