-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmini_HTML_Forms.html
More file actions
34 lines (31 loc) · 860 Bytes
/
mini_HTML_Forms.html
File metadata and controls
34 lines (31 loc) · 860 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
28
29
30
31
32
33
34
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>HTML Form</title>
</head>
<body>
<h1>HTML Form exercise</h1>
<hr>
<form action="https://request-inspector.glitch.me" method="Get">
<label for="username">Username</label>
<input id="username" name="username" type="text">
<br>
<label for="password">Password</label>
<input id="password" name="password" type="password">
<br>
<input type="text" name="email" placeholder="Enter your email">
<br>
<br>
<p>How often would you like to recieve email updates?</p>
<select name="email updates">
<option value="day">Every Day</option>
<option value="week">Every Week</option>
<option value="monoth">Every Month</option>
</select>
<br>
<br>
<button type="submit">Submit the form</button>
</form>
</body>
</html>