-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproduct.html
More file actions
83 lines (80 loc) · 4.41 KB
/
product.html
File metadata and controls
83 lines (80 loc) · 4.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<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=Italiana&family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<script src="https://kit.fontawesome.com/2b7fa2d572.js" crossorigin="anonymous"></script>
</head>
<body>
<header>
<div class="innerContainer headerContainer">
<h4 class="logo"><a href="index.html">HauteHats</h4></a>
<ul class="headerMenu">
<li class="headerLinks paddingRight"><a href="#about-us">About Us</a></li>
<li class="headerLinks paddingRight"><a href="#">Contact</a></li>
<li class="headerLinks"><a href="#products">Shop</a></li>
</ul>
<ul class="headerMenu">
<li class="headerSocials"><a href="#"><i class="fa-brands fa-pinterest-p purple icon"></i></a></li>
<li class="headerSocials"><a href="#"><i class="fa-brands fa-instagram purple icon"></i></a></li>
<li class="headerSocials cart"><a href="#"><i class="fa-solid fa-bag-shopping white icon"></i></a></li>
<i class="fa-solid fa-bars" id="menuIcon"></i>
</ul>
</div>
</header>
<section>
<div class="innerContainer productPage">
<div class="productImageGrid">
<div class="smallProduct" id="product1"></div>
<div class="smallProduct" id="product1"></div>
<div class="productDescription">
<h3>Description</h3>
<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn't anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable.</p>
<h3>Materials/Features</h3>
<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable.</p>
<ul class="featuresList">
<li class="features">Cotton</li>
<li class="features">Linen</li>
<li class="features">Machine washable</li>
<li class="features">Other stuff</li>
<li class="features">More stuff</li>
<li class="features">Cotton again</li>
</ul>
</div>
<div class="smallProduct" id="product1"></div>
<div class="smallProduct" id="product1"></div>
</div>
</div>
</section>
<footer>
<div class="innerContainer">
<div class="footerContainer">
<div class="footerColumn">
<h4 class="white">Follow us</h4>
<ul class="footerSocialMenu">
<li class="footerSocials"><a href="#"></a><i class="fa-brands fa-pinterest-p"></i></a></li>
<li class="footerSocials"><a href="#"><i class="fa-brands fa-instagram lightPurple"></i></a></li>
</ul>
<h4 class="white">Links</h4>
<ul class="footerMenu">
<li><a href="#" class="lightPurple">About Us</a></li>
<li><a href="#" class="lightPurple">Contact</a></li>
</ul>
</div>
<div class="footerColumn">
<h4 class="white">Haute Hats</h4>
<p>123 Fake Street<br>
chicago, IL, 60608</p>
</div>
</div>
</div>
</footer>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script type="text/javascript" src="main.js"></script>
</body>
</html>