Skip to content

Instantly share code, notes, and snippets.

@bmackenty
Created September 12, 2024 09:40
Show Gist options
  • Select an option

  • Save bmackenty/71ef716c8646d766e86e123aee163a47 to your computer and use it in GitHub Desktop.

Select an option

Save bmackenty/71ef716c8646d766e86e123aee163a47 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Basic Layout</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Header</h1>
</header>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
<main>
<h2>Main Content</h2>
<p>This is where your main content goes.</p>
</main>
<footer>
<p>Footer content</p>
</footer>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment