Spaces:
Runtime error
Runtime error
File size: 987 Bytes
620d324 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
<!DOCTYPE html>
<html>
<head>
<title>Resume Form</title>
</head>
<body>
<form action="/" method="POST">
<label>What kind of pet do you have?</label>
<br>
<input type="radio" id="dog" name="pet" value="dog">
<label for="dog">Dog</label>
<br>
<input type="radio" id="cat" name="pet" value="cat">
<label for="cat">Cat</label>
<br>
<input type="radio" id="other" name="pet" value="other">
<label for="other">Other</label>
<br><br>
<label>What color is your pet?</label>
<br>
<input type="checkbox" id="black" name="color" value="black">
<label for="black">Black</label>
<br>
<input type="checkbox" id="white" name="color" value="white">
<label for="white">White</label>
<br>
<input type="checkbox" id="brown" name="color" value="brown">
<label for="brown">Brown</label>
<br><br>
<input type="submit" value="Submit">
</form>
</body>
</html> |