-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContact-me.html
32 lines (31 loc) · 1.1 KB
/
Contact-me.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Contact Me</title>
</head>
<body>
<h1>My Contact Details</h1>
<h3>My Fictional Address</h3>
<p>No:22 J.C Nwobodo,Street</p>
<h3>My Phone Number</h3>
<p>08032780214</p>
<p>09020616461</p>
<h3>My Email Address</h3>
<p>paulnzubechukwu112@gmail.com</p>
<hr size='3'color='blue'>
<form action="mailto:paulnzubechukwu112@gmail.com" method="post" enctype="text/plain">
<label for="">Your First Name:</label>
<input type="text" name="YourName" value=""><br><br>
<label for="">Other Names:</label>
<input type="text" name="OtherName" value=""><br><br>
<label for="">Email Address:</label>
<input type='email' name="YourEmail" value=""><br><br>
<label for="">Password:</label>
<input type="password" name="YourPassword" value=""><br><br>
<label for="">Your Message:</label><br>
<textarea name="Message" rows="10" cols="50"></textarea><br><br>
<input type="submit" name="">
</form>
</body>
</html>