-
Notifications
You must be signed in to change notification settings - Fork 0
/
single.html
64 lines (53 loc) · 2.14 KB
/
single.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Joseph Mickler">
<meta name="description" content="The official website for Modern Clay Co.">
<title>ModernClayCo</title>
<link rel="icon" href="img/logo.jpg" type="image/jpg">
<link rel="stylesheet" href="style.css">
</head>
<body>
<section id="header">
<a href="#"><img src="img/logo.jpg" class="logo2" alt="logo"></a>
<div>
<ul id="navbar">
<li><a href="index.html">Home</a></li>
<li><a class = "active" href="shop.html">Shop</a></li>
<li><a href="events.html">Events</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
<li id="main-cart"><a href="cart.html"><img src="img/cart.jpg" class="cart" alt="cart icon"></a></li>
<a href="#" id="close"><img src="img/close.jpg" class="close" alt=""></a>
</ul>
</div>
<div id="mobile">
<a href="cart.html"><img src="img/cart.jpg" class="cart" alt="cart icon"></a>
<img id="bar" src="img/menu.jpg" class="menu">
</div>
</section>
<section id="prodetails" class="section-p1">
<div class="single-pro-image">
<img src="img/products/p1.jpg">
</div>
<div class="single-pro-details">
<h4>borwn-white-marble oval on half circle</h4>
<h2>$16.00</h2>
<input type="number" value="1">
<button class="normal">Add to cart</button>
</div>
</section>
<footer class="section-p1 footer">
<img src="img/logo.jpg" class="logo logo2">
<p><img src="img/insta.jpg" class="logo"> @modernclayco</p>
<p><img src="img/facebook.jpg" class="logo"> @modernclayco</p>
<p class="copyright">
<span> ©2024</span>
<span >Modern Clay Co</span>
</p>
</footer>
<script src="script.js"></script>
</body>
</html>