-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
96 lines (78 loc) · 2.99 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
<!-- Font families were utilized through google fonts -->
<html>
<head>
<link rel="stylesheet" href="main.css">
<meta http-equiv="refresh" content="30">
<link href="https://fonts.googleapis.com/css?family=Gaegu|Roboto" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Patrick+Hand" rel="stylesheet">
</head>
<body>
<div class="container">
<h1><a href="index.html">Sweet Eats Bakery</a></h1>
<header>
<nav>
<a href="#">About</a>
<a id="active" href="cookies.html">Cookies</a>
<a href="#">Weddings</a>
<a href="#">Catering</a>
<a href="#">Contact</a>
</nav>
<img src="https://tk-assets.lambdaschool.com/bcf76f62-2431-4c22-b466-2e711f3da2b9_ui-i-bakery-main-header.png" alt="">
<section class="about">
<h2>About Sweet Eats Bakery</h2>
<p>Marzipan jelly-o macaroon I love macaroon jujubes. Candy candy canes jujubes I love ice cream croissant. Lollipop donut icing I love liquorice gummi bears marzipan. Dragée jelly beans apple pie cotton candy lemon drops pastry candy msg powder.</p>
</section>
</header>
<section class="content-row">
<div>
<img src="https://tk-assets.lambdaschool.com/297378d6-9c89-430f-9d2e-46ae3d5edce8_ui-i-bakery-cupcake-i.png" alt="cupcakes">
</div>
<div>
<h2>Cupcakes</h2>
<p>Candy apple pie lemon drops sweet roll danish. Tiramisu candy canes jelly-o jelly beans cotton candy pastry pudding tootsie roll carrot cake.</p>
<p>Dessert sesame snaps brownie lemon drops cookie donut dragée.</p>
</div>
</section>
<section class="content-row">
<div>
<h2>Cookies</h2>
<p>Cookie soufflé dessert carrot cake fruitcake halvah pudding cake.</p> <p>Marzipan topping bear claw soufflé gingerbread biscuit. Tiramisu gummi bears chocolate bar sugar plum icing</p>
</div>
<div>
<img src="https://tk-assets.lambdaschool.com/7393a8fd-c8e5-4003-921f-79e0d546d02c_ui-i-bakery-cookies.png" alt="cookies">
</section>
<section class="content-row">
<div>
<img src="https://tk-assets.lambdaschool.com/ab0cb095-5900-476c-b042-aea065d3dbbf_ui-i-bakery-celebrate.png" alt="">
</div>
<div>
<h2>Celebrations</h2>
<p>Sweet jelly-o apple pie powder jelly beans. Pastry sweet roll cake jujubes halvah soufflé brownie.</p>
<p>Toffee cookie lemon drops jelly beans chocolate bar. Wafer muffin jujubes danish tart danish chocolate wafer.</p>
</div>
</section>
<section class="contact-section">
<h2>Contact Us</h2>
<address>
yum@sweeteatsbakery.com<br>
202-555-0144<br>
4209 Bobcat Drive<br>
Madison, WI, 48219
</address>
</section>
</div>
<footer>
<div class="footer-content">
<h3>Sweet Eats Bakery</h3>
<nav>
<a href="#">About</a>
<a id="active2" href="cookies.html">Cookies</a>
<a href="#">Weddings</a>
<a href="#">Catering</a>
<a href="#">Contact</a>
</nav>
<p class="copyright">© Sweet Eats 2018</p>
</div>
</footer>
</body>
</html>