-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
80 lines (76 loc) · 2.87 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="./style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<title>La Radiant - Makeup Store</title>
</head>
<body>
<nav>
<div class="searchbar">
<input type="search" id="searchInput" placeholder="Search Products...">
</div>
<div class="navbar-items">
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#products">Products</a></li>
<li><a href="#feedback">Feedback</a></li>
<li><a href="#contacts">Contacts</a></li>
</ul>
</div>
<div id="cart-icon">
<button id="cartBtn" class="cart-btn">
<img src="https://img.icons8.com/ios/50/shopping-cart--v1.png" width="30" height="30"
alt="shopping-cart">
<span id="cart-badge" class="badge">0</span>
</button>
</div>
<div id="myModal" class="modal">
<div class="modal-content">
<span class="close">×</span>
<div id="product-info"></div>
</div>
</div>
</nav>
<section id="hero" class="hero">
<h1>Welcome to La Radiant Makeup Store</h1>
<p class="glow"><em>Hello ❤️ gorgeous.You glow here!</em></p>
</section>
<section id="products">
<h2>Products</h2>
<div id="product-list"></div>
</section>
<section>
<div>
<h2>Add Feedback</h2>
</div>
<div id="feedback" class="feedback">
<textarea id="feedbackText" cols="30" rows="10" placeholder="Submit your feedback..."></textarea>
<button id="submitFeedback">Submit Feedback</button>
</div>
</section>
<footer>
<div id="contacts">
<p><i class="fas fa-envelope email-icon"></i>
<a href="mailto:info@laradiant.com">info@laradiant.com</a>
</p>
<p> <i class="fas fa-phone phone-icon"></i>
<a href="tel:+1234567890">+254718081920</a>
</p>
<p><i class="fas fa-map-marker-alt location-icon"></i>
Ruiru, Kenya</p>
</div>
<div>
<p>© 2024 La Radiant. All rights reserved.</p>
</div>
</footer>
<script src="index.js"></script>
</body>
</html>