forked from farrellw/LC101-HTTP-FORMS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (24 loc) · 883 Bytes
/
index.html
File metadata and controls
27 lines (24 loc) · 883 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>LC101 HTTP Forms Practice</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel='stylesheet' type='text/css' media='screen' href='assets/application.css'>
</head>
<body>
<form id="submissionForm">
<label for="first_name">First Name</label>
<input id="first_name">
</form>
</body>
</html>
<!-- 1. Create a form outline structure-->
<!-- 2. Add a field for last name -->
<!-- 3. Add a button to submit the form -->
<!-- 3.5. git add and commit -->
<!-- 4. Add a URL target to the form -->
<!-- 5. Add a field for favorite animal. Add a field for favorite food -->
<!-- 5.5 git add and commit -->
<!-- 6. Send a post request to the URL provided. Your data should appear on the screen. -->