-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproduct.html
More file actions
112 lines (112 loc) · 4.19 KB
/
product.html
File metadata and controls
112 lines (112 loc) · 4.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="description" content="we sell quality rain jackets" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>rainydays | product page</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"
/>
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.0.7/css/all.css"
/>
<link rel="stylesheet" type="text/css" href="index.css" />
</head>
<body>
<header>
<nav>
<div class="top-logo">
<img
src="https://i.ibb.co/XxXx8pm/rd-logo.png"
alt="rainydays logo"
/>
</div>
<ul class="top-nav">
<li><i class="fa-solid fa-house"></i> Home</li>
<li><i class="fa-solid fa-magnifying-glass"></i> Search</li>
<li><i class="fa-solid fa-user"></i> My Page</li>
<li><i class="fa-solid fa-heart"></i> Favorites</li>
<li><i class="fa-solid fa-cart-shopping"></i> Your Cart</li>
</ul>
</nav>
</header>
<main>
<section class="product-details">
<div class="product-text">
<h3>Whisper Jacket</h3>
<article>
The Whisper Jacket is a waterproof 3-layered shell jacket with fully
taped seams. With a hood that is helmet-compatible, multiple
pockets, including a pocket for ski-pass, and a zippered inner
pocket, this jacket allows you to push your comfort zone. It has a
two-way ventilation zipper under both arms, and ventilating mesh at
the chest pockets. Get a customized fit and maximum comfort with the
adjustable cuffs, together with the adjustable hem with drawstring.
</article>
</div>
<div class="big-photo">
<img
src="https://i.ibb.co/xmgfqQ6/lemon-curry1-min.jpg"
alt="lemon-curry whisper jacket"
/>
</div>
<div class="smaller-photos">
<img
src="https://i.ibb.co/5sKrznK/lemon-curry-back1-min.jpg"
alt="Whisper jacket shown from behind"
/>
<img
src="https://i.ibb.co/t2PdW1N/lemon-curry-inner-pocket1-min.jpg"
alt="the jacket has inner pockets"
/>
<img
src="https://i.ibb.co/z6QpJ2G/lemon-curry-vent1-min.jpg"
alt="there are ventilation-zippers under both arms"
/>
</div>
<div class="specify-order">
<p>Regular Fit</p>
<p>Kr 699,-</p>
<label for="color-selector">Color:</label>
<select name="color-selector" id="color-selector">
<option value="color-selector">-Color-</option>
<option value="lemon-curry">Lemon Curry</option>
<option value="diesel-blue">Diesel Blue</option>
<option value="black">Black</option>
<option value="tibetian-red">Tibetian Red</option>
<option value="bronze-green">Bronze Green</option>
</select>
<label for="size-selector">Size:</label>
<select name="size-selector" id="size-selector">
<option value="size">-Size-</option>
<option value="36">36</option>
<option value="38">38</option>
<option value="40">40</option>
<option value="42">42</option>
<option value="44">44</option>
</select>
<div class="add-to-cart">
<button>Add to cart</button>
</div>
<div class="to-checkout">
<button>Continue to Checkout</button>
</div>
</div>
</section>
</main>
<footer>
<nav>
<ul class="footer">
<img src="https://i.ibb.co/QrtYPzF/rd-bottom-logo.png" alt="" />
<li><a href="#">about us</a></li>
<li><a href="#">contact us</a></li>
<li><a href="#">terms of service</a></li>
<h6>© Rainydays 2023</h6>
</ul>
</nav>
</footer>
</body>
</html>