-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContact-me.html
More file actions
25 lines (22 loc) · 874 Bytes
/
Copy pathContact-me.html
File metadata and controls
25 lines (22 loc) · 874 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Contact Me</title>
</head>
<body>
<h1>My Contact Details</h1>
<p>Email:<a href="mailto:Sparksofredzone@gmail.com"> Sparksofredzone@gmail.com</a></p>
<p>Telephone: <a href="tel:+2348143728843">+2348143728843</a></p>
<p><a href="https://twitter.com/RedzoneonCod">Follow us</a> on Twitter</p><hr>
<form action="mailto:Sparksofredzone@gmail.com" method="post" enctype="text/plain">
<label for:"name">Your Name:</label>
<input type="text" name="name" value=""><br>
<label for:"email">Your Email:</label>
<input type="email" name="email" value=""><br>
<label for:"text">Your Message</label><br>
<textarea name="text" rows="10" cols="30"></textarea><br>
<input type="submit" name="">
</form>
</body>
</html>