[HTML] Add standard index skeleton

This commit is contained in:
Bill Niblock 2025-03-28 20:18:50 -04:00
parent 68ee7fdd30
commit 55d9ea3e46

22
index.html Normal file
View file

@ -0,0 +1,22 @@
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<meta name="description"
content="A description of the page." />
<meta name="author" content="Your Name" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css"
href="css/responsive_layout.css" />
</head>
<body>
<div class="grid">
<header>
</header>
<main>
</main>
<footer>
</footer>
</div>
</body>
</html>