Created
July 13, 2022 01:43
-
-
Save natafaye/d177290b243347d00434334251d04af5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"/> | |
<title>GOES IN THE TOP TAB</title> | |
</head> | |
<body> | |
<!-- <div>fdsfds</div> | |
<ul> | |
<li>fdsfdsfs</li> | |
<li> | |
fdsfds | |
<img/> | |
<div></div> | |
</li> | |
</ul> | |
<p> | |
Hey you <span>SHOULD</span> go to this link <a href="http://www.google.com">Put Some Text</a> | |
</p> --> | |
<form> | |
<div> | |
<label for="favorite-color-input">Favorite Color</label> | |
<input type="text" id="favorite-color-input" name="favorite-color"/> | |
</div> | |
<div> | |
<label for="name-input">Name</label> | |
<input type="text" id="name-input" name="name"/> | |
</div> | |
<div> | |
<label>Foods You Like</label> | |
<input type="checkbox" id="taco-checkbox" value="tacos"/> | |
<label for="taco-checkbox">Tacos</label> | |
<input type="checkbox" value="pizza" id="pizza-checkbox"/> | |
<label for="pizza-checkbox">Pizza</label> | |
<input type="checkbox" value="ice-cream" id="ice-cream-checkbox"/> | |
<label for="ice-cream-checkbox">Ice Cream</label> | |
</div> | |
<div> | |
<label>Favorite Food</label> | |
<input type="radio" id="taco-radio" value="tacos" name="favorite-food"/> | |
<label for="taco-radio">Tacos</label> | |
<input type="radio" value="pizza" id="pizza-radio" name="favorite-food"/> | |
<label for="pizza-radio">Pizza</label> | |
<input type="radio" value="ice cream" id="ice-cream-radio" name="favorite-food"/> | |
<label for="ice-cream-radio">Ice Cream</label> | |
</div> | |
<div> | |
<label for="food">Food</label> | |
<select id="food" name="food"> | |
<option value="tacos">Tacos</option> | |
<option value="pizza">Pizza</option> | |
<option value="ice cream">Ice Cream</option> | |
</select> | |
<textarea name=""></textarea> | |
</div> | |
</form> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment