Spaces:
Runtime error
Runtime error
<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> |