scrimba
Frontend Career Path
Working with APIs
URLs & REST
BlogSpace - New post form
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

AboutCommentsNotes
BlogSpace - New post form
Expand for more info
index.html
run
preview
console
<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>
Console
/index.html
-3:38