-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
128 lines (123 loc) · 5.96 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>shopping-layout</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=Quicksand:wght@300;400;500;600;700&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header></header>
<main>
<div class="pairs">
<aside class="advertising">
<p>Free Shipping!</p>
</aside>
<div class="picture-opacity">
<!-- <img class="picture" src="images/asics.avif" alt="Asics Shoes"> -->
</div>
<article>
<h2>Asics</h2>
<p class="shoe-description">Suede fabric pointed toe stylish cut front low heel sharp on-trend toe point
raised heel drop sides
unique silhouette. Bow detail metallic eyelets leather lining luxurious finish classic courts formal
slingback square...</p>
<div class="price-size">
<div class="price">
<p>$65 USD</p>
</div>
<form action="">
<div class="size-quantity">
<label for="asics-size">Size:</label>
<input type="number" placeholder="6">
<img class="arrow-quantity" src="images/chevron-down-solid.svg" alt="">
<label class="quantity" for="asics-quantity">Quantity:</label>
<input id="asics-quantity" type="number" placeholder="1">
<img class="arrow-quantity" src="images/chevron-down-solid.svg" alt="">
</div>
<div class="colors">
<p>Color:</p>
<div class="change-color blue"></div>
<div class="change-color red"></div>
<div class="change-color black"></div>
</div>
<button>Add to Cart</button>
</form>
</div>
</div>
</article>
<div class="pairs">
<div class="picture-opacity-adidas">
<!-- <img class="picture" src="images/asics.avif" alt="Asics Shoes"> -->
</div>
<article>
<h2>Adidas</h2>
<p class="shoe-description">Effortless comfortable full leather lining eye-catching unique detail to the
toe low 'cut-away' sides clean and sleek. Polished finish elegant court shoe work duty stretchy
slingback strap mid kitten heel this ladylike...</p>
<div class="price-size">
<div class="price">
<p>$30 USD</p>
</div>
<form action="">
<div class="size-quantity">
<label for="asics-size">Size:</label>
<input type="number" placeholder="6">
<img class="arrow-quantity" src="images/chevron-down-solid.svg" alt="">
<label class="quantity" for="asics-quantity">Quantity:</label>
<input id="asics-quantity" type="number" placeholder="1">
<img class="arrow-quantity" src="images/chevron-down-solid.svg" alt="">
</div>
<div class="colors">
<p>Color:</p>
<div class="change-color green-black"></div>
<div class="change-color lightblue-black"></div>
<div class="change-color pink-black"></div>
</div>
<button>Add to Cart</button>
</form>
</div>
</div>
</article>
<div class="pairs">
<aside class="advertising">
<p>Just One Left!</p>
</aside>
<div class="picture-opacity-new-balance">
<!-- <img class="picture" src="images/asics.avif" alt="Asics Shoes"> -->
</div>
<article>
<h2>New Balance</h2>
<p class="shoe-description">SSuede fabric pointed toe stylish cut front low heel sharp on-trend toe
point raised heel drop sides unique silhouette. Bow detail metallic eyelets leather lining luxurious
finish classic courts formal slingback square...
</p>
<div class="price-size">
<div class="price">
<p>$45 USD</p>
</div>
<form action="">
<div class="size-quantity">
<label for="asics-size">Size:</label>
<input type="number" placeholder="6">
<img class="arrow-quantity" src="images/chevron-down-solid.svg" alt="">
<label class="quantity" for="asics-quantity">Quantity:</label>
<input id="asics-quantity" type="number" placeholder="1">
<img class="arrow-quantity" src="images/chevron-down-solid.svg" alt="">
</div>
<div class="colors">
<p>Color:</p>
<div class="change-color red-white"></div>
<div class="change-color black-white"></div>
</div>
<button>Add to Cart</button>
</form>
</div>
</div>
</article>
</body>
</html>