scrimba
Build a sign-up form
Aside: Fieldset
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

Aside: Fieldset
AboutCommentsNotes
Aside: Fieldset
Expand for more info
index.html
run
preview
console
<html>
<head>
<link rel="stylesheet" href="index.css">
</head>
<body>
<h1>Collectibox</h1>
<form>

<p>What size hat do you wear?</p>
<input type="radio" for="small" class="radio radio1" name="hat" />
<label id="small">Small</label>
<input type="radio" for="medium" class="radio" name="hat" />
<label id="medium">Medium</label>
<input type="radio" for="large" class="radio" name="hat" />
<label id="large">Large</label>
<input type="radio" for="xlarge" class="radio" name="hat" />
<label id="xlarge">Extra-large</label>

</form>
<script src="index.pack.js"></script>
</body>
</html>
Console
/index.html
-1:38