-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact-me.html
39 lines (33 loc) · 1.39 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
33
34
35
36
37
38
39
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Me</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<h3>Contact me</h3>
<ul>
<li><a href="https://twitter.com/anserrrr">Twitter</a></li>
<li><a href="https://github.com/anserwaseem">Github</a></li>
<li><a href="mailto:hafiz.anser.waseem@gmail.com">email</a></li>
</ul>
<hr>
<form action="mailto:hafiz.anser.waseem@gmail.com" method="post" enctype="text/plain">
<label for="">Name:</label>
<input type="text" name="yourName"><br><br>
<label for="">Do you want to sign-up for my newsletter?</label>
<input type="checkbox" name="signUp"><br><br>
<label for="">Plese enter your email here.</label>
<input type="email" name="yourEmail"><br><br>
<label for="">Your Birth Date</label>
<input type="date" name="yourBirthDate"><br><br>
<label for="">Your Age</label>
<input type="number" name="yourAge"><br><br>
<label for="">Your Message:</label>
<textarea name="yourMessage" id="" cols="30" rows="10"></textarea><br>
<input type="submit" >
</form>
</body>
</html>