-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
31 lines (30 loc) · 949 Bytes
/
contact.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Contact form</title>
</head>
<body>
<center>
<h1> your Contact</h1>
<form>
<table>
<tr>
<td>Name</td> <td><input type="text" placeholder="Enter your Name"></td>
</tr>
<tr>
<td>Email id</td> <td><input type="email" placeholder="Enter your Name"></td>
</tr>
<tr>
<td>Phone No</td> <td><input type="number" placeholder="Enter Your Name"</td>
</tr>
<tr>
<td>Address</td> <td><input type="text" placeholder="Enter Your Address"</td>
</tr>
<tr>
<td><input type="submit"></td> <td><input type="reset"></td>
</tr>
</table>
</form>
</center>
</body>
</html>