1
0
Fork 1
websitedesign2024/src/index.html

52 lines
1.5 KiB
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>
2024-01-24 20:29:13 -06:00
<link rel="stylesheet" href="assets/css/main.css" />
2023-12-15 14:11:16 -06:00
</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">
2024-01-24 20:29:13 -06:00
<span class="cover-tagline">The best coffee made by the best students</span>
2023-12-15 14:32:27 -06:00
</div>
<main>
<section>
<!-- Information -->
2024-01-22 16:12:46 -06:00
<h2>Information here</h2>
2023-12-15 14:32:27 -06:00
</section>
<section>
2024-01-24 20:29:13 -06:00
<!-- New at the coffee shop -->
2024-01-22 16:12:46 -06:00
<h2>Mocha</h2>
2024-01-24 20:29:13 -06:00
<h2>Almond milk</h2>
2024-01-22 16:12:46 -06:00
<h2>Sugar-free</h2>
2023-12-15 14:32:27 -06:00
</section>
<section>
<!-- Images -->
2024-01-22 16:12:46 -06:00
<h2>Images here</h2>
2023-12-15 14:32:27 -06:00
</section>
</main>
<footer>
2024-01-22 16:12:46 -06:00
<span>Beacon Blend</span>
<ul>
<li><a href="#">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><br />
<span>&copy;2024 Lighthouse Christian School</span><br />
<span>Created for LCS and Student Conventions by David Jentes</span>
2023-12-15 14:32:27 -06:00
</footer>
2023-12-15 14:11:16 -06:00
</body>
</html>