-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathform.html
More file actions
30 lines (28 loc) · 878 Bytes
/
form.html
File metadata and controls
30 lines (28 loc) · 878 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
25
26
27
28
29
30
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Get in Touch !!</title>
</head>
<body>
<table>
<tr>
<td><label>Name:</label></td>
<td><input type="text" name="Name" value=""><br></td>
</tr>
<tr>
<td><label>Number:</label></td>
<td><input type="number" name="Telephone" id="Telephone"><br></td>
</tr>
<tr>
<td><label>EmailId:</label></td>
<td><input type="email" name="mailid" value=""><br></td>
</tr>
</table>
<label>Enter your message:</label><br>
<textarea name="Message" rows="10" cols="40"></textarea><br>
<input type="submit" value="Send">
</form>
</body>
</html>