-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
54 lines (41 loc) · 1.23 KB
/
contact.html
File metadata and controls
54 lines (41 loc) · 1.23 KB
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
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Contact - me </title>
</head>
<body>
<h3>contact me :</h3>
<table>
<!-- <thead>
<tbody>
<tr>
<th>
TO WRITE THE HEADINGS FOR DIFFERENT COLOUMNS
</th>
</tr>
<body>
</thead>-->
<tr>
<td>email id:</td>
<td>dhruvibansal555@gmail.com</td>
</tr>
<tr>
<td>contact no. </td>
<td>(+91)9911987645</td>
</tr>
<!-- <tfoot>
</tfoot>-->
</table>
<hr>
<form enctype="text/plain" action="mailto:info@londonappbrewery.com" method="post">
<label>YOUR NAME : </label>
<input type="text" name="Your name" value=""><br>
<label>YOUR EMAIL: </label>
<input type="email" name="Your email" value=""><br><br>
<label>YOUR MESSAGE: </label><br>
<textarea name="names" rows="10" cols="30"></textarea>
<input type="submit" name="Your message" value="submit">
</form>
</body>
</html>