-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (46 loc) · 1.59 KB
/
index.html
File metadata and controls
47 lines (46 loc) · 1.59 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
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
*{
background-color: black;
color: white;
}
</style>
</head>
<body>
<form action="#" method="post">
<div>
<label for="name">Name:</label>
<input type="text" name="name" id="name">
<br>
<label for="email">Email:</label>
<input type="email" name="email" id="email">
<br>
<label for="password">Password:</label>
<input type="password" name="password" id="password">
<br>
<label for="confirm-password">Confirm Password:</label>
<input type="password" name="confirm-password" id="confirm-password">
<br>
<label for="dob">Date of Birth:</label>
<input type="date" name="dob" id="dob">
<br>
<label for="gender">Gender</label>
<input type="radio" name="gender" id="gender">Male
<input type="radio" name="gender" id="gender">Female
<input type="radio" name="gender" id="gender">Other
<br>
<label for="interests">Pick your interests</label>
<input type="checkbox" name="interests" id="gender">Football
<input type="checkbox" name="interests" id="gender">Cricket
<input type="checkbox" name="interests" id="gender">Reading
</div>
<input type="submit" value="submit">
<input type="reset" value="reset">
</form>
</body>
</html>