<html>
<head>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Karla:wght@200;400;700&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="index.css">
</head>
<body>
<nav>
<h3>BlogSpace</h3>
</nav>
<!--
Challenge:
Create a form with 2 inputs (each with an associated label),
one for the post title (a text input) and one for the post body
(a textarea element). Then add a button to the form.
Don't worry about styling quite yet.
-->
<div id="blog-list"></div>
<script src="index.js"></script>
</body>
</html>