-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
33 lines (26 loc) · 859 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
30
31
32
33
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Contact Me</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<h2>Hi! I'm Zain.</h2>
<p>Here are my contact details:</p>
<p>ali.zain5693@gmail.com</p>
<p>Phone: 2027023251</p>
<p>Look forward to hearing from you!!</p>
<br>
<p>Or if you want me to reach out to you, please fill out the below form:</p>
<form action="mailto:ali.zain5693@gmail.com" method="post" enctype="text/plain">
<label>Your Name</label><br>
<input type="text" name="Your Name" value=""><br>
<label>Your Email:</label><br>
<input type="email" name="Your Email" value=""><br>
<label>Your Message</label><br>
<textarea name="Your Message" rows="10" cols="30"></textarea> <br>
<input type="submit" name=""><br>
</form>
</body>
</html>