-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
24 lines (22 loc) · 868 Bytes
/
form.html
File metadata and controls
24 lines (22 loc) · 868 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
<!DOCTYPE>
<html>
<head>
<meta charset="utf-8">
<title>Form to Startup</title>
<link rel="stylesheet" href="style2.css">
</head>
<body>
<div class="startup-data">
<h2>Adventurists Launch</h2>
<form class="startup-form" method="GET">
<label for="firstname">First Name: </label> <input type="text" name="firstname">
<label for="lastname">Last Name: </label> <input type="text" name="lastname">
<label for="email">Email: </label> <input type="email" name="email">
<label for="password">Password: </label> <input type="password" name="password" min="5">
<label for="address">Address: </label> <input type="text" name="address">
<input id="button-submit" type="submit" value="Submit">
<input id="button-reset" type="reset" value="Reset">
</form>
</div>
</body>
</html>