-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
113 lines (98 loc) · 4.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>abroad</title>
<link rel="stylesheet" href="styles.css">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-qj8D7mrOkn35ADQaxk+fqYe+tHLPPdvyUMtS5QQ5H/eLj0hpu4ephce6KJQ6hftG" crossorigin="anonymous">
</head>
<body>
<!-- This is the start of the section to be applied in all pages -->
<nav>
<div class="title">
<a href="index.html">abroad</a>
</div>
<div id="two-nav-blocks">
<div class="nav-sections">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="destinations.html">Destination</a></li>
<li><a href="blogs.html">Blogs</a></li>
<li><a href="faq.html">FAQs</a></li>
</ul>
</div>
</div>
</nav>
<!-- This is the end of the section to be applied in all pages -->
<section class="hero">
<div class="hero-content">
<h1>Welcome to Our Travel Site</h1>
<p>Discover the world's most amazing destinations</p>
</div>
</section>
<section class="featured-destinations">
<h2>Featured Destinations</h2>
<div class="destinations-container">
<div class="card">
<img src="Images/seoul.jpg" class="card-img-top" alt="seoul">
<div class="card-body">
<h3 class="card-title">Seoul, South Korea</h3>
<p class="card-text">Explore the dynamic energy of Seoul, where historic palaces blend seamlessly with futuristic architecture and bustling
streets.</p>
<button class="btn">Learn More</button>
</div>
</div>
<div class="card">
<img src="Images/NewYork.jpg" class="card-img-top" alt="new york">
<div class="card-body">
<h3 class="card-title">New York, USA</h3>
<p class="card-text">Immerse yourself in the electric atmosphere of New York City, from its iconic skyline to its world-class arts and
culture.</p>
<button class="btn">Learn More</button>
</div>
</div>
<div class="card">
<img src="Images/Tokyo.jpg" class="card-img-top" alt="tokyo">
<div class="card-body">
<h3 class="card-title">Tokyo, Japan</h3>
<p class="card-text">Experience the perfect fusion of tradition and innovation in Tokyo, where serene temples stand alongside towering
skyscrapers.</p>
<button class="btn">Learn More</button>
</div>
</div>
</div>
</section>
<section class="testimonials">
<h2>What Our Travelers Say</h2>
<div id="testimonialCarousel" class="carousel slide" data-bs-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<p>"Amazing experience in Seoul! Highly recommend Abroad."</p>
<small>- Nour Awad</small>
</div>
<div class="carousel-item">
<p>"A seamless and memorable trip to Tokyo."</p>
<small>- Leila Gamal</small>
</div>
</div>
<button title="manzar" class="carousel-control-prev" type="button" data-bs-target="#testimonialCarousel" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
</button>
<button title="manzar" class="carousel-control-next" type="button" data-bs-target="#testimonialCarousel" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
</button>
</div>
</section>
<!-- This is the start of the section to be applied in all pages -->
<footer>
<div class="footer-content">
<p>© 2024 All Rights Reserved.</p>
</div>
</footer>
<!-- This is the end of the section to be applied in all pages -->
</body>
</html>