-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
173 lines (156 loc) · 6.56 KB
/
Copy pathindex.html
File metadata and controls
173 lines (156 loc) · 6.56 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- LINKS TO CSS -->
<link rel="stylesheet" href="css/styleguide.css">
<link rel="stylesheet" href="css/home.css">
<link rel="stylesheet" href="css/footer.css">
<link rel="stylesheet" href="css/cart.css">
<!-- LINKS TO FONTS AND ICONS -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
<link rel="icon" type="image/png" href="SVG/brown_logo/favicon.svg">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Epilogue:ital,wght@0,100..900;1,100..900&family=Gravitas+One&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined"/>
<title>FaceRoots</title>
</head>
<body>
<header>
<div class="header-container">
<img class="header-img" src="img/seven_men_1grey.webp" alt="bearded men">
<a href="index.html" class="nav-logo-link">
<img src="SVG/white_logo/logo_vertical_white.svg" alt="FaceRoots" class="nav-logo">
</a>
</div>
<div class="nav-container-header">
<nav class="nav-header">
<div class="hamburger">
<span></span>
<span></span>
<span></span>
</div>
<div class="nav-left">
<a class="a-light active" href="index.html">Home</a>
<div class="dropdown">
<a href="productlist.html" class="dropbtn a-light">
<span class="link-product">Products</span>
<span class="material-symbols-outlined">keyboard_arrow_down</span>
</a>
<div class="dropdown-content categoryList">
<a class="a-light" href="productlist.html">Category 1</a>
<a class="a-light" href="productlist.html">Category 2</a>
<a class="a-light" href="productlist.html">Category 3</a>
</div>
</div>
<a class="a-light" href="about.html">About </a>
<a class="a-light" href="contact.html">Contact</a>
</div>
<div class="nav-right">
<button class="button-light"><span class="material-symbols-outlined ">shopping_cart</span> <span class="btn-text">Cart</span></button>
<button class="button-light"><span class="material-symbols-outlined">account_circle</span><span class="btn-text">Login</span></button>
<div id="shoppingCart">
<h2>Cart</h2>
<ul>
<li class="placeholder">
<button class="remove" title="Remove">Remove</button>
<span class="productName">Cedar Stand Razor Holder</span>
<span class="productPrice">349 SEK</span>
</li>
</ul>
<p class="sum">349 SEK</p>
<a class="btn" href="checkout.html">To checkout</a>
</div>
</div>
</nav>
</div>
</header>
<!-- TOP PRODUCTS -->
<section class="section">
<h2>Top Products</h2>
<div class="grid three">
<div class="card" onclick="location.href='productlist.html'">
<img src="img/products/product_fr-011.png" alt="product image">
</div>
<div class="card" onclick="location.href='productlist.html'">
<img src="img/products/product_fr-012.png" alt="product image">
</div>
<div class="card" onclick="location.href='productlist.html'">
<img src="img/products/product_fr-014.png" alt="product image">
</div>
</div>
</section>
<!-- TRENDING -->
<section class="section">
<h2>Trending</h2>
<div class="grid three">
<div class="card" onclick="location.href='productlist.html'">
<img src="img/products/product_fr-018.png" alt="product image">
</div>
<div class="card" onclick="location.href='productlist.html'">
<img src="img/products/product_fr-020.png" alt="product image">
</div>
<div class="card" onclick="location.href='productlist.html'">
<img src="img/products/product_fr-021.png" alt="product image">
</div>
</div>
</section>
<!-- PARTNERS -->
<!-- PARTNERS -->
<section class="section partners">
<h3>Samarbetspartners</h3>
<div class="partner-track">
<div class="partner-track-inner">
<img src="img/partners/logo1.png" alt="Partner 1">
<img src="img/partners/logo2.png" alt="Partner 2">
<img src="img/partners/logo3.png" alt="Partner 3">
<img src="img/partners/logo4.png" alt="Partner 4">
<img src="img/partners/logo5.png" alt="Partner 5">
<img src="img/partners/logo6.png" alt="Partner 6">
<img src="img/partners/logo7.png" alt="Partner 7">
<img src="img/partners/logo8.png" alt="Partner 8">
<!-- duplicate for seamless loop -->
<img src="img/partners/logo1.png" alt="Partner 1">
<img src="img/partners/logo2.png" alt="Partner 2">
<img src="img/partners/logo3.png" alt="Partner 3">
<img src="img/partners/logo4.png" alt="Partner 4">
<img src="img/partners/logo5.png" alt="Partner 5">
<img src="img/partners/logo6.png" alt="Partner 6">
<img src="img/partners/logo7.png" alt="Partner 7">
<img src="img/partners/logo8.png" alt="Partner 8">
</div>
</div>
</section>
<!-- FOOTER -->
<footer class="footer">
<div class="footer-container">
<div class="footer-col">
<h4>FaceRoots</h4>
<p>
Premium grooming products for beard, skin and hair.
Developed with a focus on quality and style.
</p>
</div>
<div class="footer-col">
<h4>Links</h4>
<a href="productlist.html">Products</a>
<a href="about.html">About</a>
<a href="contact.html">Contact</a>
</div>
<div class="footer-col">
<h4>Contact</h4>
<p>Email: support@faceroots.se</p>
<p>Phone: +46 8 123 45 67</p>
</div>
</div>
<div class="footer-bottom">
© 2026 FaceRoots. All rights reserved.
</div>
</footer>
<script src="js/header.js" defer></script>
<script src="js/cart.js" defer></script>
<script src="js/listcategories.js" defer></script>
</body>
</html>