-
Notifications
You must be signed in to change notification settings - Fork 0
/
collection.html
90 lines (90 loc) · 2.86 KB
/
collection.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
<!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" />
<meta
name="description"
content="On RainyDays website you can choose from a wide range of products"
/>
<title>RainyDays | Collection</title>
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;700&display=swap"
rel="stylesheet"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link rel="stylesheet" href="css/styles.css" />
<script type="module" src="/js/app.js"></script>
</head>
<body>
<header>
<div>
<a href="index.html" class="navLogo"
><img src="images/logo.png" alt="website logo"
/></a>
</div>
<input type="checkbox" id="menu-checkbox" />
<label for="menu-checkbox" class="hamburger-menu"
><i class="fas fa-bars fa-2xl"></i>
<span class="visually-hidden">Label for hamburger menu</span></label
>
<nav class="navMenu navContainer">
<a href="/collection.html">Men</a>
<a href="">Womens</a>
<a href="">Kids</a>
<a href="about.html">About</a>
<a href="contact.html">Contact</a>
<a href="cart.html"
><i class="fa-solid fa-cart-shopping"></i
><span class="visually-hidden">Visit RainyDays.com</span></a
>
</nav>
</header>
<section>
<hr class="lineHeader" />
</section>
<main>
<h1 class="collectionTitle">2023 RainyDays COLLECTION</h1>
<section id="male-container"></section>
<div class="spinner"></div>
<section id="female-container"></section>
<div class="spinner"></div>
</main>
<footer>
<div>
<hr class="lineFooter" />
</div>
<div class="footerContainer">
<div class="shipping">
<h3>Shipping</h3>
<p>
Get free delivery <span class="lineBreak"></span> for orders over
<span class="lineBreak"></span> 2000NOK
</p>
</div>
<div class="socialMedia">
<h3>You can find us on</h3>
<div class="socialIcons">
<i class="fa-brands fa-facebook fa-2xl"></i>
<i class="fa-brands fa-twitter fa-2xl"></i>
<i class="fa-brands fa-instagram fa-2xl"></i>
</div>
</div>
<div class="aboutUs">
<h3>About us</h3>
<div class="conditions">
<p>Privacy Statement</p>
<p>Sales conditions</p>
<p>Maintenance</p>
</div>
</div>
</div>
</footer>
<script
src="https://kit.fontawesome.com/aafd0c0d38.js"
crossorigin="anonymous"
></script>
</body>
</html>