<html lang="en">
<head>
<meta charset="utf-8"/>
<title>Basic controls: Task 2</title>
</head>
<body>
<form>
<fieldset>
<legend>Who is your favorite pony?</legend>
<ul>
<li>
<label for="pinkie">Pinkie Pie</label>
<input type="radio" id="pinkie" name="pony" checked>
</li>
<li>
<label for="rainbow">Rainbow Dash</label>
<input type="radio" id="rainbow" name="pony">
</li>
<li>
<label for="twilight">Twilight Sparkle</label>
<input type="radio" id="twilight" name="pony">
</li>
</ul>
</fieldset>
<fieldset>
<legend>Hotdog preferences</legend>
<ul>
<li>
<label for="vegan">Vegan</label>
<input type="checkbox" id="vegan" name="hotdog">
</li>
<li>
<label for="onions">Onions</label>
<input type="checkbox" id="onions" name="hotdog">
</li>
<li>
<label for="spicy">Spicy</label>
<input type="checkbox" id="spicy" name="hotdog">
</li>
<li>
<label for="cheese">Cheese</label>
<input type="checkbox" id="cheese" name="hotdog">
</li>
</ul>
</fieldset>
<button>Submit</button>
</form>
</body>
</html>
body {
background-color: #fff;
color: #333;
font: 1em / 1.4 Helvetica Neue, Helvetica, Arial, sans-serif;
padding: 1em;
margin: 0;
}
* {
box-sizing: border-box;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.