1
0
Fork 1
websitedesign2024/src/index.html

52 lines
1.5 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>
<link rel="stylesheet" href="assets/css/main.css" />
</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">
<h1 class="cover-tagline">The best coffee made by the best students</h1>
</div>
<main>
<section>
<!-- Information -->
<h2>Information here</h2>
</section>
<section>
<!-- New at the coffee shop -->
<h2>Mocha</h2>
<h2>Almond milk</h2>
<h2>Sugar-free</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>