-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.html
43 lines (41 loc) · 1.14 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
<!DOCTYPE html>
<html>
<head>
<title>Html forms</title>
<link rel="stylesheet" type="text/css" href="mystyle.css">
</head>
<body>
<form>
<fieldset>
<legend>Personal details</legend>
</br>
<label>salutation</label>
<select>
<option>Mr</option>
<option>Mrs</option>
<option>Mr</option>
</select>
</br>
<label for id="uname" >Name</label>
<input id="uname" type="text" name="Name">
</br>
<label for id="gend" >Gender:</label>
<input id="gend" type="radio" name="radiobutton">
male</input>
<input type="radio" name="<option>Mr</option>radiobutton">
female</input>
</br>
<input type="date" name="Date"/> </br>
Email<input type="email" name="Email"/> </br>
Description:<textarea row="10" placeholder="Write something here "
col="5"></textarea>
lDo you wish to get notification via email?
<input type="checkbox" name="checkbox"/>
yes</input>
<input type="checkbox" name="checkbox"/>
No</input> </br>
<input type="submit" name="submit">
</fieldset>
</form>
</body>
</html>