-
Notifications
You must be signed in to change notification settings - Fork 0
/
cntMe2.html
27 lines (25 loc) · 917 Bytes
/
cntMe2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Contact Me 2</title>
</head>
<body>
<h1>My Contact Details</h1>
My fictional Address.<br>
My post office.<br>
Contact Number: 784690724892<br>
<hr>
<form action="mailto: [email protected]" method="POST">
<label>Your Name: </label>
<input type="text" placeholder="Your name here"><br><br>
<label>Your E-Mail Address: </label>
<input type="email" placeholder="Your e-mail id here"><br><br>
<label>Your Message: </label><br><br>
<textarea rows="7" columns="20" placeholder="Your text here"></textarea><br><br>
<input type="submit" name="" value="Submit">
</form>
</body>
</html>