26 lines
641 B
HTML
26 lines
641 B
HTML
<!doctype html>
|
|
<html lang="en-US">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
|
<link rel="stylesheet" href="styles.css" />
|
|
<script src="elements.js" type="text/javascript" defer></script>
|
|
<title>Dairy Demon</title>
|
|
</head>
|
|
|
|
<body>
|
|
<dd-header></dd-header>
|
|
<main>
|
|
<article>
|
|
<h1>Hi.</h1>
|
|
<p>Welcome to one of the most boring websites on the internet.</p>
|
|
|
|
<p>The only interesting thing here right now is
|
|
<a href='mgs/mgs.html'>this Metal Gear Solid trivia game I made.</a>
|
|
</p>
|
|
</article>
|
|
</main>
|
|
<dd-footer></dd-footer>
|
|
</body>
|
|
</html>
|