This repository has been archived by the owner on Jan 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
120 lines (113 loc) · 4.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DevWear</title>
<!-- CSS Styles-->
<link rel="stylesheet" href="./css/reset.css">
<link rel="stylesheet" href="./css/header-footer-cart.css">
<link rel="stylesheet" href="./css/main.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" />
<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&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Inter', sans-serif;
}
</style>
<script src="./data/productData.js" defer></script>
<script src="./JS/common.js" defer></script>
</head>
<body>
<header class="header">
<div class="wrapper-navbar">
<p class="menu-button">☰</p>
<a class="logo" href="./index.html">
<img src="./images/logoTitle.png" alt="Logo">
</a>
<nav class="navigation">
<ul>
<li><a href="./index.html">HOME</a></li>
<li><a href="./pages/m-product.html">PRODUCTS</a></li>
<li><a href="./pages/about.html">ABOUT US</a></li>
</ul>
</nav>
<div class="icons">
<div class="cart-btn">
<img src="./images/cartIcon.png" alt="Shopping Cart">
<span class="cart-items">0</span>
</div>
</div>
<div class="side-menu">
<div class="menu-title">
<h2>Menu</h2>
<button class="close-button">×</button>
</div>
<nav class="mobile-navigation">
<ul>
<li><a href="./index.html">HOME</a></li>
<li><a href="./pages/m-product.html">PRODUCTS</a></li>
<li><a href="./pages/about.html">ABOUT US</a></li>
</ul>
</nav>
</div>
</div>
</header>
<div class="cart-sidebar">
<div class="cart-title">
<h2>Shopping Basket</h2>
<button class="cart-close-button">×</button>
</div>
<div class="cart-items-container">
<!-- Here goes the list of cart items -->
</div>
<div class="cart-total-container">
<p>Total:</p>
<p class="cart-total-price">£0.00</p>
</div>
<div class="cart-buttons-container">
<button class="cart-remove-all-button">Remove all items</button>
<button class="cart-checkout-button">Checkout</button>
</div>
</div>
<div class="info-message">
<p class="message-text">
<!-- message notification -->
</p>
</div>
<div class="wrapper">
<div class="banner">
<p>WINTER SALE: USE CODE "WINTER10" FOR 10% OFF       WINTER SALE: USE CODE "WINTER10" FOR 10%
OFF       WINTER SALE: USE CODE "WINTER10" FOR 10% OFF       WINTER SALE: USE
CODE "WINTER10" FOR 10% OFF</p>
</div>
<div class="container">
<div class="content">
<h2>Mens Collection 2023</h2>
<h1>Winter<br>Coats<br>Sale</h1>
<p>Stay warm and stylish this winter with our collection of<br> men's coats! From classic wool coats to
trendy puffer<br> jackets, we've got you covered.</p>
<a href="./pages/m-product.html" class="button">Go To Shop <i class="fas fa-arrow-right"></i></a>
</div>
<img src="images/img5.png" class="feature-img">
</div>
</div>
<footer class="footer">
<div class = "helpSection">
<h2>Help</h2>
<a href="./pages/FAQ.html">FAQ</a>
</div>
<div class = "aboutSection">
<h2>About Us</h2>
<a href="./pages/about.html">About Us</a>
</div>
<div class = "moreSection">
<h2>Contact Us</h2>
<a href="./pages/Contact.html">Contact Us</a>
</div>
</footer>
</body>
</html>