scrimba
Build a sign-up form
Label, an input's best friend
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

Label, an input's best friend
AboutCommentsNotes
Label, an input's best friend
Expand for more info
index.html
run
preview
console
<html>
<head>
<link rel="stylesheet" href="index.css">
</head>
<body>
<h1>Collectibox</h1>
<form>
<input type="text" />
<input type="email" />
<input type="number" />
</form>
<script src="index.pack.js"></script>
</body>
</html>


Console
/index.html
-5:33