1
0
Fork 1
websitedesign2024/src/index.html

51 lines
1.4 KiB
HTML

<!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>
<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">
<span>The best coffee made by the best students</span>
</div>
<main>
<section>
<!-- Information -->
<h2>Information here</h2>
</section>
<section>
<!-- Highlighted coffees -->
<h2>Mocha</h2>
<h2>Sugar-free</h2>
<h2>Almond Milk</h2>
</section>
<section>
<!-- Images -->
<h2>Images here</h2>
</section>
</main>
<footer>
<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>
</footer>
</body>
</html>