-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustomize.html
More file actions
90 lines (82 loc) · 2.73 KB
/
customize.html
File metadata and controls
90 lines (82 loc) · 2.73 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="description" content="Chosen product customization">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="css/customize.css">
<link rel="icon" href="images/rainy_days_upper_half.png">
<title>Customize</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css"
integrity="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<header>
<input type="checkbox" id="menu-checkbox" />
<label for="menu-checkbox" class="hamburger-icon"><i class="fa-solid fa-bars"></i></label>
<nav class="genders">
<a href="store.html">Men</a>
<a href="store.html">Women</a>
<a href="store.html">Kids</a>
</nav>
<a href="index.html">
<img class="logo" src="images/rainy_days_upper_half.png" alt="top logo">
</a>
<a class="button" href="checkout.html">Checkout</a>
</header>
<main>
<hr>
<section>
<div class="gallery">
<a href="#">
<img class="rain-jacket" src="images/RainyDays_Jacket1.jpg" alt="rain-jacket">
</a>
<div class="description">
<h1>Rainy Days</h1>
<p>UNISEX - Rain Jacket</p>
<p>2000kr</p>
</div>
<div class="size">
<p>Select Size</p>
</div>
<div class="cart">
<p>Add to Cart</p>
</div>
</div>
</section>
<a class="button2" href="checkout.html">Checkout</a>
</main>
<footer>
<div class="footerContainer">
<div class="socialIcons">
<a href="#"><i class="fa-brands fa-facebook"></i></a>
<a href="#"><i class="fa-brands fa-instagram"></i></a>
<a href="#"><i class="fa-brands fa-twitter"></i></a>
</div>
<div class="footerNav">
<h1>Help & Contact</h1>
<ul>
<li><a href="contact.html">Payment Issues</a></li>
<li><a href="contact.html">Order Delayed</a></li>
<li><a href="contact.html">Refund</a></li>
</ul>
</div>
<div class="questions">
<h1>Frequently asked questions</h1>
<ul>
<li>Can i check product availability or reserve items online?</li>
<li>What payment methods do you accept?</li>
<li>Do you offer curbisde pickup or delivery options?</li>
</ul>
</div>
<div class="about">
<a href="about.html">
<h2>About us</h2>
</a>
<img class="logo2" src="images/rainy_days_upper_half.png" alt="bottom logo">
</div>
</div>
</footer>
</body>
</html>