Copy paste this into a plain text editor, or if you don't have one, go into Google Sites and make a new site, then press the "embed" button and copy paste it into the "embed from the web" thing
<!DOCTYPE html>
<head>
<h1>What is your favorite food?</h1>
</head>
<body>
<form>
<input type="radio" id="r1" name="fav_food">
<label for="r1">Ice Cream</label>
<br>
<input type="radio" id="r2" name="fav_food">
<label for="r2">Pizza</label>
<br>
<input type="radio" id="r3" name="fav_food">
<label for="r3">Salad</label>
<br>
<input type="radio" id="r4" name="fav_food">
<label for="r4">Ramen</label>
<br>
<input type="radio" id="r5" name="fav_food">
<label for="r5">Food</label>
<br>
<input type="radio" id="r6" name="fav_food">
<label for="r6">I find this set of options very limiting</label>
<br><br>
<input type="submit">
</form>
</body>
Idk I just put this together cuz I was tired and had nothing to do