forked from jimibue/git-2301
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
162 lines (162 loc) · 4.68 KB
/
index.html
File metadata and controls
162 lines (162 loc) · 4.68 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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Fullstack Sweet Shop</title>
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="main.css" />
</head>
<body>
<header>
<h1>
Fullstack Sweet Shop
</h1>
<p id="designed-by">Designed by Adhemar Hernandez and Ben Lyddane</p>
<p>
Cupcake ipsum dolor sit amet. Bear claw jujubes liquorice. Bear claw
gingerbread jelly beans macaroon jelly-o. Toffee tart jelly liquorice
sugar plum tart. Chupa chups ice cream lollipop cupcake powder. Jelly
beans liquorice pastry biscuit wafer sugar plum powder. Ice cream
jujubes muffin wafer sweet tiramisu cheesecake chupa chups. Chocolate
oat cake cheesecake bonbon chocolate wafer. Caramels donut topping tart
cheesecake.
</p>
</header>
<section class="tiles">
<div class="box-wrapper style1">
<span class="box"> </span>
<a href="single-item-page.html">
<h2>Cupcakes</h2>
<div class="content">
<p>
Cotton candy marshmallow chupa chups brownie gingerbread.
</p>
</div>
</a>
</div>
<div class="box-wrapper style2">
<span class="box"> </span>
<a href="single-item-page.html">
<h2>Cookies</h2>
<div class="content">
<p>
Sugar plum cake chupa chups dragée chupa chups.
</p>
</div>
</a>
</div>
<div class="box-wrapper style3">
<span class="box"> </span>
<a href="single-item-page.html">
<h2>Tarts</h2>
<div class="content">
<p>
Muffin soufflé bonbon dragée tart cake danish.
</p>
</div>
</a>
</div>
<div class="box-wrapper style4">
<span class="box"> </span>
<a href="single-item-page.html">
<h2>Muffins</h2>
<div class="content">
<p>
Gingerbread pudding marzipan dessert powder.
</p>
</div>
</a>
</div>
<div class="box-wrapper style5">
<span class="box"> </span>
<a href="single-item-page.html">
<h2>Pies</h2>
<div class="content">
<p>
Sweet toffee tart cake gummies lollipop oat cake.
</p>
</div>
</a>
</div>
<div class="box-wrapper style6">
<span class="box"> </span>
<a href="single-item-page.html">
<h2>Donuts</h2>
<div class="content">
<p>
Gummi bears jelly-o soufflé tiramisu.
</p>
</div>
</a>
</div>
<div class="box-wrapper style2">
<span class="box"> </span>
<a href="single-item-page.html">
<h2>Cakes</h2>
<div class="content">
<p>
Brownie donut candy bear claw candy canes candy apple pie.
</p>
</div>
</a>
</div>
<div class="box-wrapper style3">
<span class="box"> </span>
<a href="single-item-page.html">
<h2>Danishes</h2>
<div class="content">
<p>
Biscuit pastry tootsie roll tiramisu cheesecake donut wafer
macaroon.
</p>
</div>
</a>
</div>
<div class="box-wrapper style1">
<span class="box"> </span>
<a href="single-item-page.html">
<h2>Macaroons</h2>
<div class="content">
<p>
Liquorice powder chupa chups halvah muffin chocolate cake.
</p>
</div>
</a>
</div>
<div class="box-wrapper style5">
<span class="box"> </span>
<a href="single-item-page.html">
<h2>Chocolates</h2>
<div class="content">
<p>
Chocolate cake sesame snaps marzipan wafer sugar plum brownie
dessert cookie.
</p>
</div>
</a>
</div>
<div class="box-wrapper style6">
<span class="box"> </span>
<a href="single-item-page.html">
<h2>Fudge</h2>
<div class="content">
<p>
Macaroon marzipan tootsie roll chocolate bar topping.
</p>
</div>
</a>
</div>
<div class="box-wrapper style4">
<span class="box"> </span>
<a href="single-item-page.html">
<h2>Toffee</h2>
<div class="content">
<p>
Pastry macaroon bear claw sweet roll bear claw jelly.
</p>
</div>
</a>
</div>
</section>
</body>
</html>