-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
144 lines (123 loc) · 4.48 KB
/
Copy pathindex.html
File metadata and controls
144 lines (123 loc) · 4.48 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
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<!-- Tutorial from CSS Tricks-->
<!--https://css-tricks.com/designing-a-product-page-layout-with-flexbox/?utm_source=CSS-Weekly&utm_campaign=Issue-198&utm_medium=email-->
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<meta charset="UTF-8">
<title></title>
</head>
<body>
<nav class="product-filter">
<h1>Cupcakes EveryOne</h1>
<div class="sort">
<div class="collection-sort">
<label>Filter by:</label>
<select>
<option value="/">All Cupcakes</option>
</select>
</div>
<div class="collection-sort">
<label>Sort by:</label>
<select>
<option value="/">Featured</option>
</select>
</div>
</div>
</nav>
<section class="products">
<div class="product-card">
<div class="product-image">
<img src="https://loja.confeitariadaluana.com.br/media/catalog/product/cache/1/image/9df78eab33525d08d6e5fb8d27136e95/_/0/_0035_15_1.png">
</div>
<div class="product-info">
<h5>Chocolate</h5>
<h6>$99.99</h6>
</div>
</div>
<!-- more products -->
<div class="product-card">
<div class="product-image">
<img src="http://shop.cupcakecentral.com.au/images/item?name=c3d07f95d641427fab296dcd4bf2966b.png">
</div>
<div class="product-info">
<h5> Golden Chocolate</h5>
<h6>$99.99</h6>
</div>
</div>
<div class="product-card">
<div class="product-image">
<img src="http://coccadotts.townsquareinteractive.com/files/2014/05/RedVelvet_web.png">
</div>
<div class="product-info">
<h5>Red Velvet</h5>
<h6>$99.99</h6>
</div>
</div>
<div class="product-card">
<div class="product-image">
<img src="http://lambcupcakery.com/wp-content/uploads/2014/02/cupcakes_salted_caramel.png" >
</div>
<div class="product-info">
<h5>Salted Caramel</h5>
<h6>$99.99</h6>
</div>
</div>
<div class="product-card">
<div class="product-image">
<img src="https://4.bp.blogspot.com/-4KwZTtGyask/U4-t_S2f7FI/AAAAAAAAERo/GXQ7YIVIhHw/s1600/11.png">
</div>
<div class="product-info">
<h5>Strawberry</h5>
<h6>$99.99</h6>
</div>
</div>
<div class="product-card">
<div class="product-image">
<img src=https://loja.confeitariadaluana.com.br/media/catalog/product/cache/1/image/9df78eab33525d08d6e5fb8d27136e95/_/0/_0035_15_1.png>
</div>
<div class="product-info">
<h5>Chocolate</h5>
<h6>$99.99</h6>
</div>
</div>
<!-- more products -->
<div class="product-card">
<div class="product-image">
<img src="http://shop.cupcakecentral.com.au/images/item?name=c3d07f95d641427fab296dcd4bf2966b.png">
</div>
<div class="product-info">
<h5> Golden Chocolate</h5>
<h6>$99.99</h6>
</div>
</div>
<div class="product-card">
<div class="product-image">
<img src="http://coccadotts.townsquareinteractive.com/files/2014/05/RedVelvet_web.png">
</div>
<div class="product-info">
<h5>Red Velvet</h5>
<h6>$99.99</h6>
</div>
</div>
<div class="product-card">
<div class="product-image">
<img src="http://lambcupcakery.com/wp-content/uploads/2014/02/cupcakes_salted_caramel.png" >
</div>
<div class="product-info">
<h5>Salted Caramel</h5>
<h6>$99.99</h6>
</div>
</div>
<div class="product-card">
<div class="product-image">
<img src="https://4.bp.blogspot.com/-4KwZTtGyask/U4-t_S2f7FI/AAAAAAAAERo/GXQ7YIVIhHw/s1600/11.png">
</div>
<div class="product-info">
<h5>Strawberry</h5>
<h6>$99.99</h6>
</div>
</div>
</section>
</body>
</html>