-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
35 lines (30 loc) · 1.16 KB
/
form.html
File metadata and controls
35 lines (30 loc) · 1.16 KB
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
35
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h1>FORM LESSONS</h1>
<form action="">
<label for="name">Name:</label>
<input type="text" id="name" placeholder="Enter Your Name"><p></p>
<label for="password">Password:</label>
<input type="password" id="password" placeholder="Enter Your Password"><p></p>
<label for="email">email:</label>
<input required type="email" id="email" placeholder="e.g website@gmail.com"><p></p>
<label>do you work at colab: yes<input type="checkbox"> no <input type="checkbox"></label><p></p>
<label for="rain">is it raining today?</label>
<input type="checkbox" name="" id="rain"><p></p>
<input type="radio" id="u good?">
<label for="u good?">yes</label>
<select name="" id="">
<option value="hey">hey</option>
<option value="whats good">whats good</option>
</select><p></p>
<textarea name="" id=""></textarea>
<button>Enter</button>
</form>
</body>
</html>