26 lines
563 B
HTML
26 lines
563 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<title>DHilton blog</title>
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="description" content="A simple blog">
|
|
<link rel="stylesheet" href="css/shared.css">
|
|
<link rel="stylesheet" href="css/index.css">
|
|
</head>
|
|
|
|
<body>
|
|
<div class="sunset"></div> <!--- ignore me --->
|
|
<nav class="glass">
|
|
<a href="https://google.com">test</a>
|
|
<a>test2</a>
|
|
</nav>
|
|
<main class="glass">
|
|
<h1>Hello world</h1>
|
|
<p>IDK what to put here lol</p>
|
|
</main>
|
|
</body>
|
|
|
|
</html>
|