-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmy_contact.html
More file actions
28 lines (24 loc) · 858 Bytes
/
my_contact.html
File metadata and controls
28 lines (24 loc) · 858 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
26
27
28
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>My Contact</title>
</head>
<body>
<h3>My Contacts Details</h3>
<ul>
<li><a href="https://github.com/shrewdmind">Github Profile</a></li>
<li><a href="https://www.linkedin.com/in/damilola-durodola-784304214/">Linkedin</a></li>
</ul>
<hr>
<form action="mailto:official.johntrickz@gmail.com" method="post" enctype="text/plain">
<label for="name">Enter Your Name:</label>
<input type="text" name="yourName" value=""><br>
<label for="email">Enter Your Email:</label>
<input type="email" name="yourEmail" value=""><br>
<label for="message">Enter Your Message:</label><br>
<textarea name="message" rows="5" cols="50"></textarea><br>
<input type="submit" name="" value="submit">
</form>
</body>
</html>