-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.html
26 lines (26 loc) · 877 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Form</title>
</head>
<body>
<h1>Please fill this Document</h1>
<form method="POST" action="welcome.html">
<fieldset>
<legend>My Form</legend>
<label>Name</label>
<input type="text" name="placeholder"><br/><br/>
<label>phone</label>
<input type="number" name="phone no"><br/><br/>
<input type="radio" name="radio" value="male">
<input type="radio" name="radio" value="female">
<input type="reset" value="clear form">
<input type="submit" name="submit" value="submit">
</fieldset>
<fieldset>
<legend>Not Necessary</legend>
<textarea width="20" height=10></textarea>
</fieldset>
</form>
</body>
</html>