-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
36 lines (30 loc) · 1.02 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
<html>
<head>
<!-- Stylesheets -->
<link rel="stylesheet" type="text/css" href="css/main.css">
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&display=swap" rel="stylesheet">
<!-- Tab info -->
<title>About | Bun Bun Bake Shop</title>
</head>
<body>
<!-- Top Navigation -->
<nav>
<div class="logo"><a href="index.html">Bun Bun Bake Shop</a></div>
<div class="nav-links">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="shop.html">Shop</a></li>
<li><a class="active" href="#">About</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="cart.html"><img src="assets/sprites/cart.png" height="27px"></a></li>
</ul>
</div>
</nav>
<h2 style="margin: 20%; text-align:center;">About Page Under Construction</h2>
<!-- Footer -->
<footer>
<span style="padding-right: 15px">© 2020 Bun Bun Bake Shop</span>
</footer>
</body>
</html>