INFO 253A: Frontend Web Architecture
Kay Ashaolu
<form>
<input type="text" />
</form>
<input type="submit" />
<input type="checkbox" checked="checked" />
<input type="checkbox" value="enrolled" id="check-enrolled" checked>
<label for="check-enrolled">Enrolled?</label>
<input type="radio" name="mascot" value="bear" id="radio-bear">
<label for="radio-bear">Bear </label>
<input type="radio" name="mascot" value="cardinal" id="radio-cardinal" />
<label for="radio-cardinal" >Cardinal </label>
<label for="state">State:</label>
<select name="state" id="state">
<option value="CA">CA</option>
<option value="OR">OR</option>
<option value="NY">NY</option>
</select>
<input type="hidden" name="page" value="2">
<label for="color">Color: </label>
<input type="color" name="color" id="color" /> <br />
<label for="email">Email: </label>
<input type="email" name"email" /><br />
<form method="GET" action="http://www.google.com/search">
<input type="text" name="q" value="">
<input type="submit" value="Google Search">
</form>