-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
114 lines (103 loc) · 5.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>gelemi</title>
<link rel="stylesheet" href="styles.css"/>
<link href="https://fonts.googleapis.com/css2?family=Anton&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css">
</head>
<body>
<header>
<nav class="header-nav">
<div class="">
<a href="index.html" class="logo">gèlèmi</a>
</div>
<div class="header-nav-links"><a href="shop.html">Shop</a>
<a href=about.html>About</a>
<a href=contact.html>Contact</a>
</div>
<div class="header-nav-icons">
<a href="#search"><i class="fas fa-search fa-lg"></i></a>
<a href="#shopping-cart"><i class="fa fa-shopping-cart fa-lg"></i></a>
<a href="account-login.html"><i class="fas fa-user fa-lg"></i></a>
</div>
</nav>
</header>
<main>
<section class="hero-page">
<div class="welcome-text">
<p class="welcome-text1">Chic or Casual?</p>
<p class="welcome-text2">gèlèmi will craft a gèlè to meet all your needs</p>
<a href="shop.html"><button class="shop-button">shop now</button></a>
</div>
<div class="welcome-image"><img src="images/gold-gele.jpg" alt="gold gele image" class="hero-page-gele"/></div>
</section>
<section class="bestsellers">
<h1 class="bestseller-title">Bestsellers</h1>
<div class="bestseller-gele">
<div class="bestseller"></div>
<div class="bestseller"></div>
<div class="bestseller"></div>
</div>
</section>
<section class="sample-product">
<div class="sample-product-image"></div>
<div class="sample-product-text">
<h1>The White Gele</h1>
<p>Price: ₦5000.00</p>
<p>This gele is made with white hand knitted aso oke material and then beaded with the aid of a beading machine. The beads are original pearls</p>
<p>This gele is made with white hand knitted aso oke material and then beaded with the aid of a beading machine. The beads are original pearls</p>
<p>This gele is made with white hand knitted aso oke material and then beaded with the aid of a beading machine. The beads are original pearls</p>
<button class="product-button">buy now</button>
<button class="product-button">add to cart</button>
</div>
</section>
</main>
<footer>
<section class="footer-top">
<div class="newsletter">
<h3>Newsletter</h3>
<p>Get up to date info on our new gèlè styles<p></p>
<input type="email" class="email" placeholder="Enter your email" />
<button class="subscribe-button">subscribe</button>
</div>
<div class="payments">
<select>
<option>NGN ₦</option>
<option>USD $</option>
<option>GBP £</option>
<option>CAD $</option>
</select>
<p>we accept</p>
<ul class="payments-list">
<li><img src="images/mastercard.png" /></li>
<li><img src="images/visa.png" /></li>
<li><img src="images/paypal.png" /></li>
<li><img src="images/bitcoin.png" /></li>
</ul>
</div>
<div class="links">
<h3>Quicklinks</h3>
<a href=contact.html>Contact</a>
<a href="#shipping">Shipping</a>
<a href="#refund">Refund Policy</a>
<a href="#privacy">Privacy Policy</a>
<a href="#terms">Terms of Services</a>
</div>
<div class="social-buttons">
<h3>Get in touch</h3>
<a href="mailto:hello@gelemi.com" class="button-email"><i class="far fa-envelope fa-lg"></i> hello@gelemi.com</a>
<a class="button-whatsapp"><i class="fab fa-whatsapp fa-lg"></i> 234 8012 3456</a>
<a class="button-facebook"><i class="fab fa-facebook fa-lg"></i></a>
<a class="button-twitter"><i class="fab fa-twitter fa-lg"></i></a>
<a class="button-instagram"><i class="fab fa-instagram fa-lg"></i></a>
</div>
</section>
<section class="footer-bottom">
<p class="copy">© 2022 <a href="index.html" class="logo2">gèlèmi</a></p>
</section>
</footer>
</body>
</html>