-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathForm.html
More file actions
71 lines (53 loc) · 2.82 KB
/
Form.html
File metadata and controls
71 lines (53 loc) · 2.82 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Form</title>
</head>
<body body style="background:rgba(0, 195, 255, 0.274)""></body>
<h1 style="text-align:center;font-size: 30px;">Form</h1>
<form action="">
<fieldset style="background-color: coral;">
<legend style="text-align: center; background-color: red;">Demo for Exam</legend>
<label="">Name:</label>
<input type="text" placeholder="inter your Name"><br>
<label for="">Number:</label>
<input type="number" placeholder="inter your Number"><br>
<label for="">What do you want</label>
<textarea name="" id="" cols="30" rows="5"></textarea><br>
<label>birth Date:</label>
<input type="date">
<br><br>
<p style="text-align:center;font-size: 30px;">radio</p>
<label>Gender:</label>
<input type="radio" name="a" id="br">
<label for="br">Male</label>
<input type="radio" name="a" id="dr">
<label for="dr">Female</label>
<input type="radio" name="a" id="cr">
<label for="cr">other</label>
<p style="text-align:center;font-size: 30px;">chackBox</p>
<label>Subject:</label>
<input type="checkBox" name="a" id="rb">
<label for="rb">Bagla</label>
<input type="checkBox" name="b" id="rc">
<label for="rc">English</label>
<input type="checkBox" name="c" id="rd">
<label for="rd">Math</label>
<input type="checkBox" name="d" id="re">
<label for="re">political science</label> <br><br>
<label>Group</label>:
<select>
<option>Arts</option>
<option>Comola</option>
<option>Naspati</option>
<option>Anggur</option>
</select> <br>
<label for="">photo</label>
<input type="file"><br><br><br>
<button>submet</button> <button>Reset</button><br><br>
</fieldset>
</form>
</body>
</html>