-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
29 lines (27 loc) · 906 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
27
28
29
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Me</title>
</head>
<body>
<h1>My Contact Details</h1>
<p>My Fictional Address</p>
<p>igbengoos@gmail.com</p>
<form action="mail" enctype="text/plain">
<label>Your Name: </label>
<input type="text" name="Yourname" value="" placeholder="enter your name" required>
<br>
<br>
<label>Your Email: </label>
<input type="Youremail" placeholder="enter your email" required>
</form>
<br>
<textarea name="Yourmsg" id="" cols="32" rows="10" placeholder="drop us a note"></textarea><br>
<!-- <button>Submit</button> -->
<br>
<input type="button" value="Submit">
</body>
</html>