-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
83 lines (82 loc) · 4.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Urban Grace - Discover our latest range of products including women's clothing, jewelry, and more. Enjoy special discounts and early access as a community member.">
<title>Urban Grace</title>
<title>Urban Grace</title>
<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=Inter:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/global.css">
</head>
<body>
<section id="promo-bar">
<p>Free Shipping on orders above $180</p>
</section>
<header>
<div class="nav-container">
<a class="logo" href="#">
<div class="logo-brand">Urban Grace</div>
</a>
<nav>
<a href="#products">Products</a>
<a href="#faq">FAQ</a>
<div class="cart-container">
<button class="cart-btn" type="button">
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="18" viewBox="0 0 576 512" aria-hidden="true" focusable="false"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2023 Fonticons, Inc.--><path d="M0 24C0 10.7 10.7 0 24 0H69.5c22 0 41.5 12.8 50.6 32h411c26.3 0 45.5 25 38.6 50.4l-41 152.3c-8.5 31.4-37 53.3-69.5 53.3H170.7l5.4 28.5c2.2 11.3 12.1 19.5 23.6 19.5H488c13.3 0 24 10.7 24 24s-10.7 24-24 24H199.7c-34.6 0-64.3-24.6-70.7-58.5L77.4 54.5c-.7-3.8-4-6.5-7.9-6.5H24C10.7 48 0 37.3 0 24zM128 464a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm336-48a48 48 0 1 1 0 96 48 48 0 1 1 0-96z"/></svg>
Cart<span>(0)</span>
</button>
</div>
</nav>
</div>
</header>
<section id="products">
<div class="container">
<h2>Products</h2>
<div id="categories-container">
<button id="all" type="button">All</button>
<button id="women" type="button">Women's Clothing</button>
<button id="jewelry" type="button">Jewelry</button>
</div>
<div id="products-container"></div>
</div>
</section>
<section id="newsletter">
<div class="newsletter-container">
<h3>Join Our Community!</h3>
<p>As a member, you'll enjoy special discounts and early access to new collections.</p>
<form id="newsletter-form">
<input type="email" id="email-input" placeholder="type your email"/>
<button type="submit">Join us now!</button>
</form>
</div>
</section>
<!-- Cart Modal -->
<div id="cart-modal" class="modal">
<div class="modal-content">
<div class="content-header">
<h4>SHOPPING CART</h4>
<button id="close-modal" class="close" aria-label="Close cart modal" type="button">
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="12" viewBox="0 0 384 512" aria-hidden="true" focusable="false"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path d="M376.6 84.5c11.3-13.6 9.5-33.8-4.1-45.1s-33.8-9.5-45.1 4.1L192 206 56.6 43.5C45.3 29.9 25.1 28.1 11.5 39.4S-3.9 70.9 7.4 84.5L150.3 256 7.4 427.5c-11.3 13.6-9.5 33.8 4.1 45.1s33.8 9.5 45.1-4.1L192 306 327.4 468.5c11.3 13.6 31.5 15.4 45.1 4.1s15.4-31.5 4.1-45.1L233.7 256 376.6 84.5z"/></svg>
</button>
</div>
<!-- Content of cart goes here -->
<div id="cart-items-container"></div>
<hr class="cart-divider">
<div id="cart-total-container">
<div class="cart-total">
<p class="total-title">Total Price:</p>
<p id="total-price"></p>
</div>
<div class="cart-quantity">
<p class="quantity-title">Product Quantity:</p>
<p id="product-quantity"></p>
</div>
</div>
</div>
</div>
<script type="module" src="js/main.js"></script>
</body>
</html>