-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
32 lines (30 loc) · 1023 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Arnob's Contact Info</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<h3>You can reach me at:</h3>
<ul>
<li>Email: [email protected]</li>
<li>Cell Phone: <em>+0123456789</em></li>
<li>Land Phone: <em>+0123456</em></li>
<li>Postal Address:</li>
<ul>
<li>Chittagong, Bangladesh</li>
</ul>
</ul>
<hr>
<form action="mailto:[email protected]" method="post" enctype="">
<label>Your Name:</label>
<input type="text" name="yourName"><br>
<label>Your Email:</label>
<input type="email" name="yourEmail"><br>
<label>Your Message:</label><br>
<textarea name="yourText" id="" cols="30" rows="10"></textarea><br>
<input type="submit">
</form>
</body>
</html>