-
Notifications
You must be signed in to change notification settings - Fork 1
/
contacts.html
30 lines (30 loc) · 1.1 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
<!DOCTYPE html>
<html>
<head>
<title>I LOVE THE 90s Web Page/My Contacts</title>
</head>
<body>
<header>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="hobbies.html" target="_blank">My Hobbies</a></li>
</ul>
</header>
<h1>Contact Information</h1>
<h3><em>Contact and follow me at:</em></h3>
<h3><a href="https://twitter.com/MensahTribeWDev" target="_blank">TWITTER</a></h3>
<h3><a href="https://github.com/mensahtribe" target="_blank">GITHUB</a></h3>
<p>or</p>
<h3>Please Email Me For More Imformation:</h3>
<hr>
<form action="mailto:ndm.acct85@gmail.com" method="post"enctype="text/plain">
<label>Your Name:</label>
<input type="text" value=""><br>
<label>Your Email:</label>
<input type="email" value=""><br>
<label>Your Message:</label><br>
<textarea name="name" rows="8" col="80"></textarea><br>
<input type="submit" name="">
</form>
</body>
</html>