-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathformadvance.html
More file actions
24 lines (24 loc) · 944 Bytes
/
formadvance.html
File metadata and controls
24 lines (24 loc) · 944 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Form Advance</title>
</head>
<body>
<form autocomplete="on">
<fieldset>
<legend>Personal Information</legend>
<label>Name:</label>
<input type="text" placeholder="Enter Your Name" name="fname" required> <br><br>
<label>Email:</label>
<input type="email" placeholder="Enter Your Email" name="email" required> <br><br>
<label>Contact No:</label>
<input type="text" placeholder="Enter Your Contact No" name="no" minlength="10" maxlength="10" required> <br><br>
<input type="submit" value="Submit">
<input type="reset" value="Reset">
</fieldset>
</form>
</body>
</html>