-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
244 lines (240 loc) · 10.7 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
<!DOCTYPE html>
<html>
<head>
<title>EMS</title>
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<!-- =====HEADER==== -->
<header id="header" class="header">
<!-- NAVIGATION -->
<nav class="nav_center">
<div class="nav_flex container">
<div class="logo">
<a href="index.html" class="logo nav-logo">
<img src="images/EMS.svg">
</a>
</div>
<ul class="nav_flex ">
<li class="nav-item">
<a class="nav-link" href="#header">Intro</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#shop">Shop</a>
</li>
</ul>
<button class="btns btns-primary nav-btn cart_flex">
<img src="images/cart.svg" class="cart_img" alt="cart image">
<span class="item-qty-no">0</span>
</button>
</div>
</nav>
<div class="success">
<div class="success-container">
<div class="success-body-container">
<div class="success-summary-container">
<h1 class="success-msg">
Thank you,
<span class="customer-name"></span>,
Your Order Has Been Received
</h1>
<img src="images/check.svg" alt="success image" class="success-img">
<p class="msg-ref"></p>
</div>
<h2 class="summary-title">Summary</h2>
<div class="table-container">
<table class="table">
<thead>
<tr>
<th>S/N</th>
<th>Item</th>
<th>Quantity</th>
</tr>
</thead>
<tbody class="summary-tbody">
</tbody>
</table>
</div>
<div class="success-btn-container btn-container">
<button class="btns btns-primary ok-btn">Ok</button>
</div>
</div>
</div>
</div>
<div class="cart">
<div class="cart-container">
<input type="checkbox" name="checkbox" class="checkbox" id="checkbox">
<div class="cart-body-container">
<div class="table-container">
<table class="table">
<thead>
<tr>
<th>S/N</th>
<th class="item-th">Item</th>
<th class="price-th">Price</th>
<th class="qty-th">Quantity</th>
</tr>
</thead>
<tbody class="cart-tbody">
</tbody>
</table>
</div>
<div class="form-boy">
<form action="" class="form">
<input type="text" title="Name" name="name" class="form-input" id="name" placeholder="Your Name">
<small class="error-txt"></small>
<input type="email" title="Email" name="email" class="form-input" id="email" placeholder="Your Email">
<small class="error-txt"></small>
<input type="text" title="Phone number" name="number" class="form-input" id="phone-number"
placeholder="Your Phone Number">
<small class="error-txt"></small>
</form>
</div>
<div class="total-amount-container">
<h1 class="total-amount-txt">
Total Amount to be Paid
</h1>
<p class="price-container">
₦<span class="total-price">0</span>
</p>
</div>
<div class="cart-btn-container btn-container">
<button class="btns cart-container-btn continue-btn btns-secondary-light">Continue Shopping</button>
<button class="btns btns-primary cart-container-btn pay-btn">Checkout</button>
</div>
</div>
</div>
</div>
<!-- Intro -->
<div class="intro">
<div class="intro_content container">
<div class="flex intro_flex">
<div class="intro-title">
<h1 class="intro_title">
THE <br> E-MILLENIAL <br> STORE
</h1>
</div>
<div class="intro_img">
<img src="images/heroImage.png" alt="intro_img">
</div>
</div>
<div class="shop_now flex">
<a href="#shop" class="btns btns-primary shop-now flex">SHOP NOW</a>
</div>
</div>
</div>
</header>
<!--MAIN-->
<main>
<!-- ABOUT SECTION -->
<section class="section about" id="about">
<div class="container">
<div class="about_container">
<p class="about_info">
E-Millenial Store is an hypothetical online store for gadgets we believe every 'Millenial' or 'Gen-Z' should have today.We've got mobile phones,laptops,smartwatches and other gadgets. Explore all our gadgets and choose the ones that suit you.
</p>
</div>
</div>
</section>
<!-- SHOP SECTION -->
<section class="section shop" id="shop">
<div class="container">
<h1 class="heading">OUR GADGETS</h1>
<div class="grid-container">
<div class="product">
<div class="product-box flex">
<img src="images/product1.png" alt="SAMSUNG TV" class="product-img">
<div class="price-box">
<p class="price-title flex"><u>Price</u></p>
<p class="price-tag">₦<span class="price-value">750,000</span></p>
</div>
</div>
<h3 class="product-name">SAMSUNG TV</h3>
<button class="btns btns-primary btn-cart flex">ADD TO CART</button>
</div>
<div class="product">
<div class="product-box flex">
<img src="images/product2.png" alt="PIXEL 4a" class="product-img">
<div class="price-box">
<p class="price-title flex"><u>Price</u></p>
<p class="price-tag">₦<span class="price-value">250,000</span></p>
</div>
</div>
<h3 class="product-name">PIXEL 4a</h3>
<button class="btns btns-primary btn-cart flex">ADD TO CART</button>
</div>
<div class="product">
<div class="product-box flex">
<img src="images/product3.png" alt="PS 5" class="product-img">
<div class="price-box">
<p class="price-title flex"><u>Price</u></p>
<p class="price-tag">₦<span class="price-value">300,000</span></p>
</div>
</div>
<h3 class="product-name">PS 5</h3>
<button class="btns btns-primary btn-cart flex">ADD TO CART</button>
</div>
<div class="product">
<div class="product-box flex">
<img src="images/product4.png" alt="MACBOOK AIR " class="product-img">
<div class="price-box">
<p class="price-title flex"><u>Price</u></p>
<p class="price-tag">₦<span class="price-value">800,000</span></p>
</div>
</div>
<h3 class="product-name">MACBOOK AIR </h3>
<button class="btns btns-primary btn-cart flex">ADD TO CART</button>
</div>
<div class="product">
<div class="product-box">
<img src="images/product5.png" alt="APPLE WATCH" class="product-img">
<div class="price-box">
<p class="price-title flex"><u>Price</u></p>
<p class="price-tag">₦<span class="price-value">95,000</span></p>
</div>
</div>
<h3 class="product-name">APPLE WATCH</h3>
<button class="btns btns-primary btn-cart flex">ADD TO CART</button>
</div>
<div class="product">
<div class="product-box flex">
<img src="images/product6.png" alt="AIR PODS" class="product-img">
<div class="price-box">
<p class="price-title flex"><u>Price</u></p>
<p class="price-tag">₦<span class="price-value">70,000</span></p>
</div>
</div>
<h3 class="product-name">AIR PODS</h3>
<button class="btns btns-primary btn-cart flex">ADD TO CART</button>
</div>
</div>
<!-- end grid container -->
</div>
</section>
<!-- FOOTER -->
<footer class="section footer" id="footer">
<div class="container">
<div class="flex">
<div class="footer_logo">
<img src="images/EMS.svg">
</div>
<div class="footer_content">
<p>
Designed and Crafted by a Frontend Ninja.
</p>
</div>
</div>
</div>
</footer>
</main>
<script src="https://js.paystack.co/v1/inline.js"></script>
<script type="text/javascript" src="./js/script.js"></script>
</body>
</html>