-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
50 lines (47 loc) · 1.75 KB
/
Copy pathform.html
File metadata and controls
50 lines (47 loc) · 1.75 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
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Form</title>
<link rel="stylesheet" href="../CSS/style.css">
<style>
h1{
color: red;
}
</style>
</head>
<body>
<form action="method">
<label for="name"> Name:</label>
<input type="text" id="name" name="name" placeholder="John Cena">
<br>
<label for="email"> Email:</label>
<input type="email" name="email" placeholder="aakriti@gmail.com">
<br>
<label for="Date of birth">Date of Birth</label>
<input type="date" name="dateofbirth" id= "dateofbirth">
<br>
<label for ="gender"> Gender:</label>
<input type="radio" name="gender" id="fender" value="male">
<label for="male">Male</label>
<input type="radio" name="gender" id="gender" value="female">
<label for="Female">Female</label>
<br>
<label for="skills"> Skills</label>
<input type="checkbox" name="skills" id="skills" value="python">
<label for="skills1"> Python</label>
<input type="checkbox" name="skills2" id="skills" value="Django">
<label for="skills2"> Django</label>
<input type="checkbox" name="skills3" id="skills" value="Database">
<label for="skills3"> Database</label>
<input type="checkbox" name="skills" id="skills" value="communication">
<label for="skills4"> Communication</label>
<input type="checkbox" name="skills" id="skills" value="leadership">
<label for="skills5"> Leadership</label>
</form>
<h1>PM Sushila Karki</h1>
<h1 style = color:blue>Election Results</h1>
<h1>CPN-UML</h1>
</body>
</html>