-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
52 lines (46 loc) · 1.19 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Omar Achmed - ContactMe</title>
</head>
<body>
<h3>Contact Me</h3>
<p>Interested to build a website just like this? Feel free to contact me at [email protected]</p>
<p>Or call me at +XX 00392 27327(NotMine)</p>
<form action="mailto:[email protected]" method="post" enctype="text/plain">
<table>
<tr>
<td>
<label for="name">Your Name:</label>
</td>
<td>
<input type="text" name="userName" value="">
</td>
</tr>
<tr>
<td>
<label for="">Your Email:</label>
</td>
<td>
<input type="email" name="userEmail" value="">
</td>
</tr>
<tr>
<td>
<label for="">Message:</label>
</td>
<td>
<textarea name="userMessage" rows="8" cols="27"></textarea>
</td>
</tr>
</table>
<input type="checkbox" name="" value="">
<label for="">Sign up to recieve email notifications</label><br>
<br>
<input type="submit" name="" value="Submit">
</form>
<br><br>
<a href="index.html">⬅️Back to main page</a>
</body>
</html>