-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
26 lines (26 loc) · 966 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Contact Information</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<p>You can reach Mbongeni at:</p>
<ul>
<li><a href="mailto:[email protected]?subject=feedback">email me</a></li>
<li><a href="tel:+27659298227">Phone</a></li>
<li><a href="https://example.com">Website</a></li>
</ul>
<hr>
<form action="mailto:[email protected]?subject=feedback" method="post" enctype="text/plain">
<label for="">Your Name:</label>
<input type="text" name="name" value="" required><br>
<label for="">Your Email</label>
<input type="email" name="email" value="" required><br>
<label for="">Your Message:</label><br>
<textarea name="message" id="" cols="30" rows="10"></textarea><br>
<input type="submit" value="Subscribe!">
</form>
</body>
</html>