-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
51 lines (39 loc) · 1.21 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Contact </title>
</head>
<body>
<h3>Contact me</h3>
<ul>
<li><strong>Social media</strong></li>
<ul>
<li><em><a href="https://www.instagram.com/shanul.huda/?hl=en">Instagram</a></em> </li>
<li><em><a href="https://www.facebook.com/Huda.shanul">facebook</a></em></li>
</ul>
<li><strong>Email</strong>: </li>
<ul>
<li><em>[email protected]</em></li>
</ul>
<li><strong>Mobile no</strong></li>
<ul>
<li><em>+15632563256</em></li>
</ul>
</ul>
<form class="" action="mailto:[email protected]" method="post" enctype="text/plain">
<label for="">Your Name:</label>
<input type="text" name="Name" value="">
<br>
<label for="Email">Your Email:</label>
<input type="email" name="email" value="">
<br>
<label>Your Message:</label>
<textarea name="Message" rows="8" cols="20"></textarea>
<!-- <label for="Password">Your Password:</label>
<input type="password" name="" value=""><br> -->
<label for="submit">Submit</label>
<input type="submit" name="" value="">
</form>
</body>
</html>