-
Notifications
You must be signed in to change notification settings - Fork 0
/
contacts.html
45 lines (40 loc) · 1.17 KB
/
contacts.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
44
45
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<ul>
<li>phone no: 9047343320</li>
<li>email: varadhancst@gmail.com</li>
</ul>
<a href="index.html">back</a>
<table>
<tr>
<td><label for="">Your name</label></td>
<td><input type="text" name="" value=""></td>
</tr>
<tr>
<td><label for="">Your Email</label></td>
<td><input type="text" name="" value=""></td>
</tr>
<tr>
<td><label for="">Your message</label></td>
<td> <textarea name="name" rows="8" cols="25"></textarea> </td>
</tr>
<tr>
<td><input type="button" name="" value="button"></td>
</tr>
</table>
<!-- <form class="" action="index.html" method="post">
<label for="">Your name</label>
<input type="text" name="" value=""><br>
<label for="">Your Email</label>
<input type="text" name="" value=""><br>
<label for="">Your Message</label>
<textarea name="name" rows="8" cols="25"></textarea><br>
<input type="button" name="" value="submit">
</form> -->
</body>
</html>