-
Notifications
You must be signed in to change notification settings - Fork 0
/
ContactMe.html
35 lines (29 loc) · 930 Bytes
/
ContactMe.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
33
34
35
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="style.css">
<title></title>
</head>
<body>
<h1>To Contact me:</h1>
<ul>
<strong></strong><p>Gmail: [email protected]</strong></p>
<hr>
<form action="mailto:[email protected]" method="post" enctype="text/plain">
<label>Your Name:</label>
<input type="text" name="your Name" value="">
<br>
<label>Your Email:</label>
<input type="email" name="your Email" value="">
<br>
<label>Your Message:</label>
<textarea name="your Message" rows="10" cols="30"></textarea>
<br>
<label>Do you want to sign up for email list?</label>
<input type="checkbox" name="" value="">
<input type="submit" name="">
</form>
</ul>
</body>
</html>