-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
160 lines (133 loc) · 6.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- AOS Library -->
<!-- https://github.com/michalsnik/aos -->
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<link rel="stylesheet" href="./css/global.css">
<link rel="stylesheet" href="./css/main.css">
<title>Travel Site | Home</title>
</head>
<body>
<!-- NAVBAR -->
<header class="header">
<nav class="navbar" data-aos="fade-down">
<div class="navbar__left">
<h3 class="navbar__logo"><a href="./index.html" class="navbar__link--logo">travel site</a></h3>
</div>
<div class="navbar__right">
<div class="navbar__mobile">
<img src="./assets/icons/menu.svg" alt="mobile-menu" class="navbar__mobile-icon"/>
</div>
<ul class="navbar__list">
<li class="navbar__item"><a href="./index.html" class="navbar__link navbar__link--active">home</a></li>
<li class="navbar__item"><a href="./pages/hawaii.html" class="navbar__link">hawaii</a></li>
<li class="navbar__item"><a href="./pages/iceland.html" class="navbar__link">iceland</a></li>
<li class="navbar__item"><a href="./pages/greece.html" class="navbar__link">greece</a></li>
</ul>
</div>
</nav>
</header>
<main>
<!-- HERO -->
<section class="hero">
<div class="hero__content" data-aos="fade-right">
<h1 class="hero__header">travelling comes with endless discoveries</h1>
<p class="hero__text">Don’t let your dreams be just dreams. Experience the world by booking a vacation with us now.</p>
<a href="./pages/get-started.html" class="hero__link"><button class="hero__button">get started</button></a>
</div>
<div class="hero__image-wrapper" data-aos="fade-left">
<img src="./assets/images/hero.png" alt="hero-image" class="hero__image"/>
</div>
</section>
<!-- RECOMMENDED -->
<section class="recommended">
<h2 class="recommended__header" data-aos="fade-down" data-aos-easing="ease-out" data-aos-duration="300" data-aos-delay="150">recommendations</h2>
<section class="cards">
<a href="./pages/hawaii.html" class="card__link" data-aos="fade-down" data-aos-easing="ease-out" data-aos-duration="300" data-aos-delay="300">
<article class="card card--hawaii">
<div class="card__content">
<h3 class="card__header">hawaii</h3>
</div>
<div class="overlay"></div>
</article>
</a>
<a href="./pages/iceland.html" class="card__link" data-aos="fade-down" data-aos-easing="ease-out" data-aos-duration="300" data-aos-delay="450">
<article class="card card--iceland">
<div class="card__content">
<h3 class="card__header">iceland</h3>
</div>
<div class="overlay"></div>
</article>
</a>
<a href="./pages/greece.html" class="card__link" data-aos="fade-down" data-aos-easing="ease-out" data-aos-duration="300" data-aos-delay="600">
<article class="card card--greece">
<div class="card__content">
<h3 class="card__header">greece</h3>
</div>
<div class="overlay"></div>
</article>
</a>
</section>
</section>
</main>
<!-- FOOTER -->
<footer class="footer">
<section class="footer-contact" data-aos="fade-up" data-aos-easing="ease-out" data-aos-duration="300">
<h3 class="footer__header">contact</h3>
<div class="footer__content">
<div class="footer-item">
<p class="footer-item__text--helper">email</p>
<a href="mailto:info@travelsite.com?subject=I Need a Vacation :(" class="footer-item__text">info@travelsite.com</a>
</div>
</div>
</section>
<section class="footer-hours" data-aos="fade-up" data-aos-easing="ease-out" data-aos-duration="300" data-aos-delay="150">
<h3 class="footer__header">hours</h3>
<div class="footer__content">
<div class="footer-item">
<p class="footer-item__text--helper">monday - friday</p>
<p class="footer-item__text">9:00 AM - 5:00 PM</p>
</div>
<div class="footer-item">
<p class="footer-item__text--helper">saturday</p>
<p class="footer-item__text">10:00 AM - 4:00 PM</p>
</div>
<div class="footer-item">
<p class="footer-item__text--helper">sunday</p>
<p class="footer-item__text">Closed</p>
</div>
</div>
</section>
<section class="footer-socials" data-aos="fade-up" data-aos-easing="ease-out" data-aos-duration="300" data-aos-delay="300">
<h3 class="footer__header">social</h3>
<div class="footer__content">
<ul class="footer-socials__list">
<li class="footer-socials__item">
<a href="https://www.instagram.com" class="footer-socials__link">
<img src="./assets/icons/icon-instagram.png" alt="instagram" class="footer-socials__icon"/>
</a>
</li>
<li class="footer-socials__item">
<a href="https://www.facebook.com" class="footer-socials__link">
<img src="./assets/icons/icon-facebook.png" alt="facebook" class="footer-socials__icon"/>
</a>
</li>
<li class="footer-socials__item">
<a href="https://www.twitter.com" class="footer-socials__link">
<img src="./assets/icons/icon-twitter.png" alt="twitter" class="footer-socials__icon"/>
</a>
</li>
</ul>
</div>
</section>
</footer>
<!-- AOS Initialization -->
<script>
AOS.init();
</script>
</body>
</html>