Created
February 7, 2017 22:10
-
-
Save yifeiyin/120b4d1ef3dc5eabe0d0d50d53b38f18 to your computer and use it in GitHub Desktop.
Exercise9(2) Part2 created by yifeiyin - https://repl.it/Fav0/1
This file contains 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
Empty file |
This file contains 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"> | |
<meta name="viewport" content="width=device-width"> | |
<title>repl.it</title> | |
<script src="index.js"></script> | |
<link href="index.css" rel="stylesheet" type="text/css" /> | |
</head> | |
<body> | |
<form> | |
<table> | |
<tr> | |
<td>Name:</td> | |
<td><input name="name" type="text" size="20"></td> | |
</tr> | |
<tr> | |
<td>Address:</td> | |
<td><input name="address" type="text" size="20"></td> | |
</tr> | |
<tr> | |
<td>City:</td> | |
<td><input name="city" type="text" size="20"></td> | |
</tr> | |
<tr> | |
<td>State:</td> | |
<td><input name="zip" type="text" size="10"></td> | |
</tr> | |
<tr> | |
<td>Zip:</td> | |
<td><input name="state" type="text" size="10"></td> | |
</tr> | |
<tr> | |
<td>Magazine:</td> | |
<td> | |
<select name="magazine"> | |
<option value="Newsweek">Newsweek</option> | |
<option value="Time">Time</option> | |
<option value="Fortune">Fortune</option> | |
<option value="TVGuide">TVGuide</option> | |
<option value="WomansDay">WomansDay</option> | |
</select> | |
</td> | |
</tr> | |
<tr> | |
<td>Subscription:</td> | |
<td> | |
<input type="radio" name="SUBSCRIPTION" value="1yr" checked>1 year | |
<input type="radio" name="SUBSCRIPTION" value="2yrs">2 years | |
</td> | |
</tr> | |
</table> | |
<input type="submit" value="Send Your Order"> | |
</form> | |
</body> | |
</html> |
This file contains 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
Empty file |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment