Skip to content

Instantly share code, notes, and snippets.

@yifeiyin
Created February 7, 2017 21:52
Show Gist options
  • Save yifeiyin/ca16eb1a77d3c344afb9810d3a4ff343 to your computer and use it in GitHub Desktop.
Save yifeiyin/ca16eb1a77d3c344afb9810d3a4ff343 to your computer and use it in GitHub Desktop.
Exercise9(1) part1 created by yifeiyin - https://repl.it/Faui/0
<!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 type="text" name="name"></td>
</tr>
<tr>
<td>Address:</td><td><input type="text" name="address"></td>
</tr>
<tr>
<td>City:</td><td><input type="text" name="city"></td>
</tr>
<tr>
<td>State:</td><td><input type="text" size="10" name="state"></td>
</tr>
<tr>
<td>Zip:</td><td><input type="text" size="10" name="zip"></td>
</tr>
</table>
<input type="submit" value="Send Your Order">
</form>
</body>
</html>
Empty file
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment