-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
239 lines (222 loc) · 9.74 KB
/
index.html
File metadata and controls
239 lines (222 loc) · 9.74 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DropPoint - The streetwear marketplace for Malaysia’s boldest brands</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"
integrity="sha512-z3gLpd7yknf1YoNbCzqRKc4qyor8gaKU1qmn+CShxbuBusANI9QpRohGBreCFkKxLhei6S9CQXFEbbKuqLg0DA=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<section class="notice">
<div class="notice-container">
<p>Welcome to DropPoint Online Store</p>
<p>Free shipping for orders over RM150.</p>
<p>10% off your first order! Code: WELCOME10</p>
</div>
</section>
<nav class="nav">
<div class="logo">
<h1><a href="/">DropPoint.</a></h1>
</div>
<button class="menu-toggle"><i class="fa fa-bars"></i></button>
<ul class="nav-main-menu">
<li><a href="../" class="nav-link">Home</a></li>
<li class="dropdown">
<a href="#" class="nav-link"><span>Category</span> <i class="fa fa-chevron-down"></i></a>
<ul class="dropdown-content">
<li><a href="../shop/">T-Shirt</a></li>
<li><a href="#">Bottoms</a></li>
<li><a href="#">Accessories</a></li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="nav-link"><span>Collection</span> <i class="fa fa-chevron-down"></i></a>
<ul class="dropdown-content">
<li><a href="#">New Arrival</a></li>
<li><a href="#">Hari Raya Sale</a></li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="nav-link"><span>About</span> <i class="fa fa-chevron-down"></i></a>
<ul class="dropdown-content">
<li><a href="../about/">About Us</a></li>
<li class="sub-dropdown">
<a href="#" class="dropdown-link"><span>Contact</span> <i class="fa fa-chevron-right"></i></a>
<ul class="sub-dropdown-content">
<li><a href="#">Facebook</a></li>
<li><a href="#">Instagram</a></li>
<li><a href="#">Redbook</a></li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="action">
<div class="btn">
<a href="#" class="search-btn" id="searchToggle"><i class="fa-solid fa-magnifying-glass"></i></a>
<div class="search-bar-container" id="searchBar">
<input type="text" placeholder="Search..." />
<button><i class="fa fa-search"></i></button>
</div>
<a href="#" class="cart-btn" aria-label="Open Cart"><i class="fa-solid fa-cart-shopping"></i></a>
<a href="/login"><i class="fa-solid fa-user"></i></a>
</div>
</div>
<div class="cart-sidebar" id="cartSidebar">
<div class="cart-header">
<h2>1 item(s) in cart</h2>
<button class="close-cart" id="closeCartBtn">×</button>
</div>
<div class="cart-items">
<div class="cart-item">
<img src="images/clothes1-front.png" alt="TNTCO Tee">
<div class="item-details">
<p class="name">TNTCO | RFJAM DANANG TEE</p>
<p class="size">Size L × 1</p>
<p class="price">RM 189.00</p>
</div>
</div>
</div>
<div class="cart-footer">
<a href="/checkout" class="cta-button">Checkout</a>
</div>
</div>
<div id="cart-overlay" class="cart-overlay"></div>
</nav>
<section class="hero">
<div class="hero-content">
<h1>Malaysia’s Modern Streetwear</h1>
<p>Shop exclusive collections from UNDG, TNTCO, HYPE & more.</p>
<a href="/shop" class="cta-button">Shop Now</a>
</div>
<div class="hero-image">
<img src="images/hero-model.jpeg" alt="Streetwear model">
</div>
</section>
<section class="info-banner">
<div class="info-item">
<i class="fa-solid fa-right-left"></i>
<h4>30 Days Return</h4>
<p>Simply return it within 30 days for an exchange.</p>
</div>
<div class="info-item">
<i class="fa-solid fa-truck"></i>
<h4>Free MY Delivery</h4>
<p>On orders over RM150!</p>
</div>
<div class="info-item">
<i class="fa-solid fa-headset"></i>
<h4>Support 24/7</h4>
<p>Contact us 24 hours a day, 7 days a week</p>
</div>
</section>
<section class="brands">
<div class="brands-content">
<h1>Our Brands</h1>
<div class="brands-logo">
<img src="images/brand1.png" alt="Brand 1">
<img src="images/brand2.png" alt="Brand 2">
<img src="images/brand3.png" alt="Brand 3">
<img src="images/brand4.png" alt="Brand 4">
</div>
</div>
</section>
<section class="new-arrivals">
<h2>New Arrivals</h2>
<div class="products">
<div class="product">
<a href="/product-details/">
<div class="product-img">
<img src="images/clothes1-back.png" alt="Clothes 1" class="back">
<img src="images/clothes1-front.png" alt="Clothes 1" class="front">
</div>
<div class="product-info">
<span class="product-name">TNTCO | RFJAM DANANG TEE</span>
<span class="product-price">RM189.00</span>
</div>
</a>
</div>
<div class="product">
<div class="product-img">
<img src="images/clothes2-front.jpeg" alt="Clothes 2" class="front">
<img src="images/clothes2-back.jpeg" alt="Clothes 2" class="back">
</div>
<div class="product-info">
<span class="product-name">FRDCO | 3M REFLECTIVE SPIDER BLACK TEE</span>
<span class="product-price">RM159.00</span>
</div>
</div>
<div class="product">
<div class="product-img">
<img src="images/clothes3-front.png" alt="Clothes 3" class="front">
<img src="images/clothes3-back.png" alt="Clothes 3" class="back">
</div>
<div class="product-info">
<span class="product-name">UNDG | PUFF TEE</span>
<span class="product-price">RM129.00</span>
</div>
</div>
<div class="product">
<div class="product-img">
<img src="images/clothes4-front.png" alt="Clothes 4" class="front">
<img src="images/clothes4-back.png" alt="Clothes 4" class="back">
</div>
<div class="product-info">
<span class="product-name">STONED & CO | SIGNATURE JUNIOR BLACK</span>
<span class="product-price">RM88.00</span>
</div>
</div>
</div>
<a href="/shop" class="cta-button">Check More Products</a>
</section>
<footer class="site-footer">
<div class="footer-container">
<div class="footer-col logo-col">
<div class="logo">
<h1>DropPoint.</h1>
</div>
<p>DropPoint is Malaysia’s go-to streetwear hub — connecting bold, local brands with style-driven
individuals who rep authenticity and culture.</p>
<div class="payment-icons">
<img src="images/visa.png" alt="Visa Card">
<img src="images/master-card.png" alt="Master Card">
<img src="images/fpx.png" alt="FPX">
</div>
</div>
<div class="footer-col">
<h4>Shopping</h4>
<ul>
<li><a href="#">T-Shirt</a></li>
<li><a href="#">Bottoms</a></li>
<li><a href="#">Accessories</a></li>
<li><a href="#">Hari Raya Sale</a></li>
</ul>
</div>
<div class="footer-col">
<h4>Contact Us</h4>
<ul>
<li><a href="#">Facebook</a></li>
<li><a href="#">Instagram</a></li>
<li><a href="#">Redbook</a></li>
<li><a href="mailto:support@dropoint.com.my">support@dropoint.com.my</a></li>
</ul>
</div>
<div class="footer-col newsletter-col">
<h4>Newsletter</h4>
<p>Be the first to know about new arrivals, look books, sales & promos!</p>
<form class="newsletter-form">
<input type="email" placeholder="Enter your email" required>
<button type="submit"><i class="fas fa-envelope"></i></button>
</form>
</div>
</div>
<div class="footer-bottom">
<p>Copyright © 2025 DropPoint. All rights reserved</p>
</div>
</footer>
<script src="main.js"></script>
</body>
</html>