1
0
Fork 1
websitedesign2024/src/index.html

38 lines
835 B
HTML
Raw Normal View History

2023-12-15 14:11:16 -06:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Beacon Blend</title>
</head>
<body>
2023-12-15 14:32:27 -06:00
<header>
<h1>Beacon Blend</h1>
<nav>
<ul>
<li><a href="#" id="current">Home</a></li>
<li><a href="about">About</a></li>
<li><a href="menu">Menu</a></li>
<li><a href="order">Order</a></li>
</ul>
</nav>
</header>
<div class="cover">
</div>
<main>
<section>
<!-- Information -->
</section>
<section>
<!-- Highlighted coffees -->
</section>
<section>
<!-- Images -->
</section>
</main>
<footer>
</footer>
2023-12-15 14:11:16 -06:00
</body>
</html>