-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.html
60 lines (55 loc) · 2.24 KB
/
form.html
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Form Document</title>
</head>
<body>
<header>
<h1>This page is about forms</h1>
</header>
<main>
<form action="">
<div>
<label for="email">Email</label>
<input type="email" name="email" id="" required placeholder="Enter email">
</div><br>
<div class="">
<label for="username">Username</label>
<input type="text" name="username" id="" required placeholder="Enter username">
</div><br>
<div class="">
<label for="">Password</label>
<input type="password" name="password" id="" required placeholder="Enter correct password">
</div><br>
<div class="">
<label for="">Select multiple options</label>
<div class="">
<input type="checkbox" name="create" id="create">
<label for="create">I want to create an account only</label><br>
<input type="checkbox" name="edit" id="edit">
<label for="edit">I want to create and edit my account</label><br>
<input type="checkbox" name="none" id="none">
<label for="none">I don't want anything</label>
</div>
</div><br>
<div class="">
<label for="">Select one option</label>
<div class="">
<input type="radio" name="account" id="create-radio">
<label for="create-radio">I want to create an account only</label><br>
<input type="radio" name="account" id="edit-radio">
<label for="edit-radio">I want to create and edit my account</label><br>
<input type="radio" name="account" id="none-radio">
<label for="none-radio">I don't want anything</label>
</div>
</div><br>
<input type="submit" value="Submit">
</form>
</main>
<footer>
<h2>Learnt from integral</h2>
</footer>
</body>
</html>