-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
129 lines (129 loc) · 5.38 KB
/
index.html
File metadata and controls
129 lines (129 loc) · 5.38 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
<!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="Get top-quality rain jackets at a good price from Rainydays.">
<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=Lato&Montserrat&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/b318972c4d.js" crossorigin="anonymous"></script>
<title> Rainydays | Home </title>
<link href="css/styles.css" rel="stylesheet">
</head>
<body>
<header>
<div class="header-container">
<a class="logo-header" href="index.html">
<figure style="max-width: 100px;margin:0px;">
<img class="logo-image" src="/images/RainyDays_Logo.png" alt="Green logo">
</figure>
</a>
<input type="text" placeholder="Search here..." class="search">
<div class="header-icons">
<div>
<a href="#"><i class="fa-regular fa-heart"></i> Favourites</a>
</div>
<div>
<a href="#"><i class="fa-regular fa-user"></i> My pages</a>
</div>
<div>
<a href="#"><i class="fa-solid fa-cart-shopping"></i> Shopping Cart</a>
</div>
</div>
</div>
</header>
<label for="menu-checkbox" class="hamburger-icon"><i class="fas fa-bars"></i></label>
<input type="checkbox" id="menu-checkbox">
<nav class="nav-menu">
<ul>
<li><a href="jackets.html">All jacket news</a></li>
<li><a href="#">Women</a></li>
<li><a href="#">Men</a></li>
<li><a href="#">Exploring</a></li>
<li><a href="#">Hiking</a></li>
<li><a href="#">Camping</a></li>
<li><a href="#">Canoeing</a></li>
<li><a href="#">Skiing</a></li>
<li><a href="about.html">About us</a></li>
<li><a href="contact.html">Contact us</a></li>
<li><a href="index.html" class="active">Home</a></li>
<li><a href="#">Sale</a></li>
</ul>
</nav>
<main>
<section class="banner-container">
<div class="banner-image">
<img class="banner__image" src="images/home-header.jpg" alt="A lady in a yellow jacket, looking out over a green water with mountains in the background surrounded by
a beautiful landscape with green trees around the water.">
</div>
<div class="banner-content">
<h1>This week <span>-30%</span> On all autumn news</h1>
<a href="jackets.html" class="cta__banner">Shop now!</a>
</div>
</section>
<a href="jackets.html" class="all-news">All news</a>
<section class="products-container">
<div class="product-card product-featured">
<a href="jacket.html">
<img class="product__image" src="images/Jacket_Men_Fleece_Green.png" alt="Green fleece jacket men"></a>
<h2>Men's Fleece Jacket</h2>
<p class="product__price">$89</p>
</div>
<div class="product-card product-featured">
<a href="jacket.html">
<img class="product__image" src="images/Jacket_Women_Black.png" alt="Black waterproof jacket women"></a>
<h2>Women's Waterproof Jacket</h2>
<p class="product__price">$129</p>
</div>
<div class="product-card product-featured">
<a href="jacket.html">
<img class="product__image" src="images/Jacket_Men_Black_Yellow.png" alt="Black and yellow waterproof jacket men"></a>
<h2>Men's Waterproof Jacket</h2>
<p class="product__price">$139</p>
</div>
<div class="product-card product-featured">
<a href="jacket.html">
<img class="product__image" src="images/Jacket_Men_Black_white.png" alt="Black and white waterproof jacket men"></a>
<h2>Men's Waterproof Jacket</h2>
<p class="product__price">$139</p>
</div>
</section>
<section>
<div class="categories">
<div class="category categorie-exploring">
<a href="index.html" class="cta__categorie">Exploring</a>
</div>
<div class="category categorie-hiking">
<a href="index.html" class="cta__categorie">Hiking</a>
</div>
<div class="category categorie-camping">
<a href="index.html" class="cta__categorie">Camping</a>
</div>
</div>
</section>
</main>
<footer>
<div class="footer-container">
<div class="help-container">
<h3>Help</h3>
<ul>
<li>Customer service</li>
<li>Return</li>
<li>Shipping & delivery</li>
<li>Privacy policy</li>
</ul>
</div>
<div class="contact-container">
<h3>Contact us</h3>
<ul>
<li><a href="about.html" class="footer-about">About us</a></li>
<li><a href="contact.html" class="footer-contact">Contact us</a></li>
<li>Work with us</li>
</ul>
</div>
</div>
</footer>
</body>
</html>