-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
83 lines (77 loc) · 3.66 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/css/materialize.min.css">
<title>Elise’s Pumpkin Loaf Bakery</title>
</head>
<body>
<header>
<h1>Elise’s Pumpkin Loaf Bakery</h1>
<div>
<div class="navbar">
<a href="index.html">Bakery Home</a>
<a href="about.html">Conract Information and Social Medias</a>
<a href="sisterlocation.html">Information about Expanding Location</a>
<a href="jquery.html">JQuery</a>
<a href="materialize.html">Link to materialize page</a>
<a href="https://raec.rocklinusd.org/documents/gradportfoliofiles/standard%20application.pdf"
target="_blank">Apply Today!</a>
</div>
</header>
<section id="about">
<h2>About Us</h2>
<p>We are a small, locally run and operated business on the corner of High Street and S Poplar Street in the
historic downtown of Oxford, Ohio. We believe that customers should be able to taste the heart, soul, and
passion put into each of our products, which is why we make everything in-house but our heavily renowned
pastry chefs. We can pridefully say all of our ingredients come from the local Oxford area, because we are
committed to supporting a greater cause and giving back to the community who has truly given us everything.
Serving the Oxford Community since 2002, and committed to continue servicing for more to come!</p>
</section>
<section id="contact">
<h2>Contact Us</h2>
<p><strong>Address:</strong> 533 S Poplar Street, Oxford Ohio, 45056</p>
<p><strong>Phone:</strong> (555) 847-7834</p>
<p><strong>Email:</strong> <a
href="mailto:info@Elise’sPumpkinLoafBakery.com">info@Elise’sPumpkinLoafBakery.com</a></p>
</section>
<section>
<h2>Follow Our Socials!</h2>
<ul class="collapsible">
<li>
<div class="collapsible-header"><i class="material-icons">Instagram</i></div>
<div class="collapsible-body"><span>@Elise’sPumpkinloaves</span></div>
</li>
<li>
<div class="collapsible-header"><i class="material-icons">Facebook</i></div>
<div class="collapsible-body"><span>@Elise’sPumpkinloaves</span></div>
</li>
<li>
<div class="collapsible-header"><i class="material-icons">TikTok</i></div>
<div class="collapsible-body"><span>@Elise’sPumpkinloaves</span></div>
</li>
</ul>
</section>
<section>
<h2>Recreate the Fun at Home!</h2>
<p>On days when we're closed, you can still enjoy our delicious pumpkin loaf! Follow this quick and easy recipe
to bring the taste of Delicious Bakery to your kitchen.</p>
<p>
<a href="https://www.youtube.com/watch?app=desktop&v=8a_DGXFQpKU" target="_blank">Pumpkin Loaf Recipe at
Home</a>
</p>
</section>
<footer>
<p>© 2024 Elise’s Pumpkin Loaf Bakery. All rights reserved.</p>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<script>
document.addEventListener('DOMContentLoaded', function() {
var elems = document.querySelectorAll('.collapsible');
var instances = M.Collapsible.init(elems);
});
</script>
</body>
</html>