-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshop.html
93 lines (80 loc) · 2.23 KB
/
shop.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
<!DOCTYPE HTML>
<html>
<head>
<title>Dopey's Flower Shop</title>
<link rel="stylesheet" href="main.css">
</head>
<header>
<h1>Dopey's Flower Shop</h1>
</header>
<nav class="sticky">
<div>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="shop.html">Shop</a></li>
</ul>
</div>
</nav>
<body>
<h2 class="display-header">Most Popular</h2>
<div class="display-showcase">
<div class="product">
<img src="resources/daisy.png">
<div class="label"><p1>Daisy</p1></div>
<button>Add to Cart</button>
</div>
<div class="product">
<img src="resources/carnation.png">
<div class="label"><p1>Carnation</p1></div>
<button>Add to Cart</button>
</div>
<div class="product">
<img src="resources/daffodil.png">
<div class="label"><p1>Daffodil</p1></div>
<button>Add to Cart</button>
</div>
<div class="product">
<img src="resources/lilac.png">
<div class="label"><p1>Lilac</p1></div>
<button>Add to Cart</button>
</div>
<div class="product">
<img src="resources/peony.png">
<div class="label"><p1>Peony</p1></div>
<button>Add to Cart</button>
</div>
<div class="product">
<img src="resources/tulip.png">
<div class="label"><p1>Tulip</p1></div>
<button>Add to Cart</button>
</div>
<div class="product">
<img src="resources/rose.png">
<div class="label"><p1>Rose</p1></div>
<button>Add to Cart</button>
</div>
<div class="product">
<img src="resources/pot.png">
<div class="label"><p1>Clay Pot</p1></div>
<button>Add to Cart</button>
</div>
<div class="product">
<img src="resources/vase.png">
<div class="label"><p1>Ceramic Glazed Vase</p1></div>
<button>Add to Cart</button>
</div>
</div>
<div class="giftcard">
<div>
<img src="resources/gift-card.jpg">
</div>
<div>
<h3>Give a gift card!</h3>
<p>Are you so bad at giving gifts that you can't even buy your spouse flowers? Don't fear, they can do that for themselves too!</p>
<button type="button">Add to Cart</button>
<div>
</div>
</body>
<footer>
</footer>
</html>