forked from Donald2023-source/Classwork
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (57 loc) · 2.31 KB
/
index.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
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- displays site properly based on user's device -->
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<title>Frontend Mentor | E-commerce product page</title>
<!-- Feel free to remove these styles or customise in your own stylesheet 👍 -->
<style>
.attribution { font-size: 11px; text-align: center; }
.attribution a { color: hsl(228, 45%, 44%); }
</style>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@400;700&family=Outfit:wght@400;700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Slab:wght@100&display=swap" rel="stylesheet">;
</head>
<body>
<div class="container">
<nav>
<h3> <b>Sneaker</b>
<a href="">Collections</a>
<a href=""> Men</a>
<a href=""> Women</a>
<a href=""> About</a>
<a href="">Contact</a>
</h3>
</nav>
<aside id="rsb">
<a href=""><img src="images/icon-cart.svg" alt=""></a>
<a href=""><img src="images/image-avatar.png" alt="" height="50px" width="50px"></a>
</aside>
<main>
<img id="pic" src="images/image-product-1.jpg" alt="" height="400px" width="410px">
<p> <h3 id="sub">SNEAKER COMPANY</h3>
<B>
Fall Limited Edition Sneakers
</B>
<br>
<div class="no"> These low-profile sneakers are your perfect casual wear companion. Featuring a
durable rubber outer sole, they’ll withstand everything the weather can offer.</div>
<h2>$125.00 <i id="price">50%</i>
<h4>$250.00</h4>
</h2>
<div class="roll">
<input placeholder="QTY" id="line" type="number">
<button>Add to Cart +</button>
<div class="others">
<img id="name" src="images/image-product-1.jpg" alt="" height="100px" width="100px">
<img id="name" src="images/image-product-2.jpg" alt="" height="100px" width="100px">
<img id="name" src="images/image-product-3.jpg" alt=""height="100px" width="100px">
<img id="name" src="images/image-product-4.jpg" alt=""height="100px" width="100px">
</div>
</div>
</p>
</main>
</div>
</body>
</html>