-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
182 lines (182 loc) · 5.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Travel | Landing Page | DEPI P02</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<header class="main-header" id="home">
<nav>
<div class="container">
<p class="logo">
<span>travel.co</span>
</p>
<ul>
<li>
<a href="#home" class="active">home</a>
</li>
<li>
<a href="#jorneys">jorneys</a>
</li>
<li>
<a href="#next-trip">activities</a>
</li>
<li>
<a href="#contact">contact</a>
</li>
</ul>
</div>
</nav>
<div class="container">
<article>
<h1>travel</h1>
<p>
Lorem, ipsum dolor sit amet consectetur adipisicing elit. Sunt, ad
fugit dolores quos facere quibusdam reprehenderit vero numquam, eos,
officia necessitatibus?
</p>
<a href="#jorneys" class="btn">Start jorney</a>
</article>
</div>
</header>
<main>
<section class="jorneys" id="jorneys">
<div class="container">
<header>
<h2>start your jorney</h2>
<p>Lorem ipsum dolor sit amet.</p>
</header>
<div class="content">
<figure>
<img src="imgs/back.jpg" alt="img" />
<figcaption>
<p>Lorem, ipsum</p>
</figcaption>
</figure>
<figure>
<img src="imgs/beach-1836335_1280.jpg" alt="img" />
<figcaption>
<p>Lorem, ipsum</p>
</figcaption>
</figure>
<figure>
<img src="imgs/beach-2084350_1280.jpg" alt="img" />
<figcaption>
<p>Lorem, ipsum</p>
</figcaption>
</figure>
<figure>
<img src="imgs/beach-666122_1280.jpg" alt="img" />
<figcaption>
<p>Lorem, ipsum</p>
</figcaption>
</figure>
<figure>
<img src="imgs/island-5783440_1280.jpg" alt="img" />
<figcaption>
<p>Lorem, ipsum</p>
</figcaption>
</figure>
<figure>
<img src="imgs/beach-418742_1280.jpg" alt="img" />
<figcaption>
<p>Lorem, ipsum</p>
</figcaption>
</figure>
<div class="static-clear"></div>
</div>
</div>
</section>
<section class="next-trip" id="next-trip">
<div class="container">
<h2>Do you know what is our next trip ???</h2>
<p>
Lorem ipsum, dolor sit amet consectetur adipisicing elit. Est, eos?
</p>
<img
src="./imgs/beach-2084350_1280.jpg"
width="100%"
height="600px"
alt="next-trip"
/>
</div>
</section>
</main>
<footer>
<div class="container">
<div class="left-side">
<h3>browse tours by activity</h3>
<ul>
<li>
<a href="#"> in cairo </a>
</li>
<li>
<a href="#"> in giza </a>
</li>
<li>
<a href="#"> in alexandria </a>
</li>
<li>
<a href="#"> in italy (west) </a>
</li>
<li>
<a href="#"> in new york (west) </a>
</li>
<li>
<a href="#"> in new last-vigas (west) </a>
</li>
<li>
<a href="#"> in neom (the line city) </a>
</li>
<li>
<a href="#"> in nazlt alashtar (the last city xD) </a>
</li>
</ul>
</div>
<div class="right-side">
<h3>newsletter</h3>
<p>Lorem ipsum dolor sit amet.</p>
<form action="#" id="contact">
<input type="email" name="email" id="email" disabled />
<button>Subscribe</button>
</form>
<ul class="social-links">
<li>
<a href="#">
<i class="fab fa-facebook-f"></i>
</a>
</li>
<li>
<a href="#">
<i class="fab fa-twitter"></i>
</a>
</li>
<li>
<a href="#">
<i class="fas fa-home"></i>
</a>
</li>
<li>
<a href="#">
<i class="fab fa-linkedin"></i>
</a>
</li>
</ul>
</div>
</div>
<p class="real-footer-xd">
<span>#fourth assignment,</span>
<span>made with love by <b>Ragab ©</b></span>
</p>
</footer>
</body>
</html>