<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>