-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
230 lines (189 loc) · 10.2 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
<!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.0">
<!--========== BOXICONS ==========-->
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>
<!--========== CSS ==========-->
<link rel="stylesheet" href="assets/scss/styles.css">
<title>Christmas is Here</title>
</head>
<body>
<!--BACK TO TOP BUTTON-->
<a href="#" class="back__to__top" id="back-to-top">
<i class='bx bx-up-arrow-alt'></i>
</a>
<!--PAGE HEADER-->
<header class="l-header">
<nav class="nav bd-container">
<!--NAV LOGO-->
<a href="#" class="nav__logo">Christmas Gift</a>
<!--NAV MENU-->
<div class="nav__menu" id="nav-menu">
<ul class="nav__list">
<li class="nav__item"><a href="#home" class="nav__link active__link">Home</a></li>
<li class="nav__item"><a href="#share" class="nav__link">Share</a></li>
<li class="nav__item"><a href="#decoration" class="nav__link">Decorations</a></li>
<li class="nav__item"><a href="#accessory" class="nav__link">Accessory</a></li>
<li class="nav__item"><i class='theme__toggle bx bx-toggle-left' id="theme-toggle"></i></li>
</ul>
</div>
<!--NAV MOBILE TOGGLE-->
<div class="nav__toggle" id="nav-toggle">
<i class="bx bx-grid-alt"></i>
</div>
</nav>
</header>
<!--PAGE BODY (5 SECTIONS)-->
<main class="l-main">
<!--SECTION 1 (HOME)-->
<section class="home" id="home">
<div class="home__container bd-container bd-grid">
<div class="home__img">
<img src="assets/img/home.png" alt="">
</div>
<div class="home__data">
<h1 class="home__title">Send A Gift For Christmas</h1>
<p class="home__description">In these end of the year holidays send a gift to your loved one and share the happiness at Christmas.</p>
<a href="#" class="button">Get Started</a>
</div>
</div>
</section>
<!--SECTION 2 (SHARE)-->
<section class="share section bd-container" id="share">
<div class="share__container bd-grid">
<div class="share__data">
<h2 class="section-title-center">Sharing Is The Best Gift<br/>You Can Give</h2>
<p class="share__description">Sharing these holidays is the best gift you can give, give a present or share your love with the people you love the most and celebrate with great happiness.</p>
<a href="#" class="button">Send a Gift</a>
</div>
<div class="share__img">
<img src="assets/img/shared.png" alt="">
</div>
</div>
</section>
<!--SECTION 3 (DECORATION)-->
<section class="decoration section bd-container" id="decoration">
<h2 class="section-title">Give Christmas Decorations <br> For Your Home</h2>
<div class="decoration__container bd-grid">
<!--decoration1-->
<div class="decoration__data">
<img src="assets/img/decoration1.png" alt="" class="decoration__img">
<h3 class="decoration__title">Christmas Bells</h3>
<a href="#" class="button-link">Go Shopping</a>
</div>
<!--decoration2-->
<div class="decoration__data">
<img src="assets/img/decoration2.png" alt="" class="decoration__img">
<h3 class="decoration__title">Christmas Candies</h3>
<a href="#" class="button-link">Go Shopping</a>
</div>
<!--decoration3-->
<div class="decoration__data">
<img src="assets/img/decoration3.png" alt="" class="decoration__img">
<h3 class="decoration__title">Christmas Trees</h3>
<a href="#" class="button-link">Go Shopping</a>
</div>
</div>
</section>
<!--SECTION 4 (ACCESSORIES)-->
<section class="accessory section bd-container" id="accessory">
<h2 class="section-title">New Christmas <br> Accessories</h2>
<div class="accessory__container bd-grid">
<div class="accessory__data">
<img src="assets/img/accessory1.png" alt="" class="accessory__img">
<h3 class="accessory__title">Snow Globe</h3>
<span class="accessory__category">Accessory</span>
<span class="accessory__price">$9.45</span>
<a href="#" class="button accessory__button"><i class='bx bx-heart'></i></a>
</div>
<div class="accessory__data">
<img src="assets/img/accessory2.png" alt="" class="accessory__img">
<h3 class="accessory__title">Candy</h3>
<span class="accessory__category">Accessory</span>
<span class="accessory__price">$2.52</span>
<a href="#" class="button accessory__button"><i class='bx bx-heart'></i></a>
</div>
<div class="accessory__data">
<img src="assets/img/accessory3.png" alt="" class="accessory__img">
<h3 class="accessory__title">Angel</h3>
<span class="accessory__category">Accessory</span>
<span class="accessory__price">$13.15</span>
<a href="#" class="button accessory__button"><i class='bx bx-heart'></i></a>
</div>
<div class="accessory__data">
<img src="assets/img/accessory4.png" alt="" class="accessory__img">
<h3 class="accessory__title">Sphere</h3>
<span class="accessory__category">Accessory</span>
<span class="accessory__price">$4.25</span>
<a href="#" class="button accessory__button"><i class='bx bx-heart'></i></a>
</div>
<div class="accessory__data">
<img src="assets/img/accessory5.png" alt="" class="accessory__img">
<h3 class="accessory__title">Surprise gift</h3>
<span class="accessory__category">Accessory</span>
<span class="accessory__price">$7.99</span>
<a href="#" class="button accessory__button"><i class='bx bx-heart'></i></a>
</div>
</div>
</section>
<!--SECTION 5 (SEND)-->
<section class="section send">
<div class="send__container bd-container bd-grid">
<div class="send__data">
<h2 class="send__title section-title-center">Send Gift Now</h2>
<p class="send__description">Start giving away before the holidays are over. Write the home address of the person who will send the gift.</p>
<form action="">
<div class="send__direction">
<input type="text" placeholder="House address" class="send__input">
<a href="#" class="button">Send</a>
</div>
</form>
</div>
<div class="send__img">
<img src="assets/img/send.png" alt="">
</div>
</div>
</section>
</main>
<!--PAGE FOOTER-->
<footer class="footer section">
<div class="footer__container bd-grid bd-container">
<div class="footer__data">
<h3 class="footer__title">
<a href="#" class="footer__logo">Christmas Gift</a>
</h3>
<p class="footer__description">I sent a gift and it gives<br>happiness</p>
</div>
<div class="footer__data">
<h3 class="footer__title">Our Services</h3>
<ul>
<li><a href="#" class="footer__link">Pricing</a></li>
<li><a href="#" class="footer__link">Discounts</a></li>
<li><a href="#" class="footer__link">Shipping mode</a></li>
</ul>
</div>
<div class="footer__data">
<h3 class="footer__title">Our Company</h3>
<ul>
<li><a href="#" class="footer__link">Blog</a></li>
<li><a href="#" class="footer__link">About us</a></li>
<li><a href="#" class="footer__link">Our mission</a></li>
</ul>
</div>
<div class="footer__data">
<h3 class="footer__title">Social</h3>
<a href="#" class="footer__social"><i class="bx bxl-facebook-circle"></i></a>
<a href="#" class="footer__social"><i class="bx bxl-twitter"></i></a>
<a href="#" class="footer__social"><i class="bx bxl-instagram-alt"></i></a>
</div>
</div>
</footer>
<!--========== SCROLL REVEAL ==========-->
<script src="https://unpkg.com/scrollreveal"></script>
<!--========== MAIN JS ==========-->
<script src="assets/js/main.js"></script>
</body>
</html>