-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdetails.html
91 lines (88 loc) · 3.96 KB
/
details.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="assets/stylesheets/detail.css">
<link href="https://fonts.googleapis.com/css?family=Roboto:400,500" rel="stylesheet">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Home-SHOP</title>
</head>
<body>
<header class="header-container">
<a href="catalog.html"><img src="assets/images/left-arrow.png" class="back-image"></a>
<a href="index.html" class="main-heading"><p class="heading">S H O P</p></a>
<a href="cart.html"><img src="assets/images/shopping-cart.png" class="shopping-cart-image"></a>
<br><br><br>
<nav class="nav-items">
<p class="active">Men's Outerwear</p>
<p>Ladies Outerwear</p>
<p>Men's T-shirts</p>
<p>Ladies T-shirts</p>
</nav>
</header>
<div class="container">
<div class="item image">
<img src="assets/images/description.jpg">
</div>
<div class="item detail-item">
<h1>Men's Tech Shell Full Zip</h1>
<div class="price">$50.20</div>
<div class="options-to-select">
<div class="shop-select">
<label id="sizeLabel" prefix="">Size</label>
<select id="sizeSelect" aria-labelledby="sizeLabel">
<option value="XS">XS</option>
<option value="S">S</option>
<option value="M" selected="">M</option>
<option value="L">L</option>
<option value="XL">XL</option>
</select>
<div class="shop-md-decorator">
<div class="shop-underline"></div>
</div>
</div>
<div class="shop-select">
<label id="quantityLabel" prefix="">Quantity</label>
<select id="quantitySelect" aria-labelledby="quantityLabel">
<option value="1" selected="">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
</select>
<div class="shop-md-decorator">
<div class="shop-underline"></div>
</div>
</div>
<div class="description">
<h2 style="color: black; font-weight: 500;">Description</h2>
<p id="desc">A versatile full-zip that you can wear all day long and even to the gym. This technical shell features
moisture-wicking fabric, added stretch and a hidden pocket for your smartphone or media player.
<div>
</div>
<div class="font-small">Features:</div>
<div>
<ul class="font-small">
<li>100% polyester.</li>
<li>Smooth, technical front with textured mesh back.</li>
<li>Drawstring bottom for adjustable fit.</li>
<li>Raglan sleeves.</li>
<li>Available in forest green with the white Google logo embroidered at left chest.</li>
</ul>
</div>
</p>
</div>
</div>
<a href="cart.html" class="button shop-button">ADD TO CART</a>
</div>
</div>
<div class="sticky-button">
<a href="cart.html">ADD TO CART</a>
</div>
<footer class="footer-container">
<a href="cart.html">Made by Srivatsa</a>
<p class="demo-text">DEMO ONLY</p>
</footer>
</body>
</html>