xxxxxxxxxx
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Max's pizza</title>
</head>
<body>
<form>
<fieldset>
<legend>
What is your favorite pizza topping?
</legend>
<div >
<input type="radio" name="test-input" id="test-input-1" checked="">
<label for="test-input-1">
escargot
</label>
</div>
<div >
<input type="radio" name="test-input" id="test-input-2">
<label for="test-input-2">
Pepperoni
</label>
</div>
<div >
<input type="radio" name="test-input" id="test-input-3">
<label for="test-input-3">
green peppers
</label>
</div>
</fieldset>
</form>
</body>
</html>