-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
49 lines (48 loc) · 1.59 KB
/
contact.html
File metadata and controls
49 lines (48 loc) · 1.59 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact </title>
</head>
<body>
<h1>Contact Details</h1>
<ul>
<li><strong>Email</strong></li>
<ul>
<li>arnabmandal90007@gmail.com</li>
<li>arnabmandal77@gmail.com</li>
</ul>
<br>
<li><strong>Phone Number</strong></li>
<ul>
<li>8250172406</li>
<li>9434306647</li>
</ul>
<br>
<li><strong>WhatsApp Number</strong></li>
<ul>
<li>8250172406</li>
</ul>
<br>
<li><strong>Social Media</strong></li>
<ul>
<li><a href="https://twitter.com/Hi_its_Arnab">Twitter</a></li>
<li><a href="https://github.com/helloArnab">Github</a></li>
<li><a href="https://www.instagram.com/__a.r.n.a.b.__/">Instagram</a></li>
</ul>
</ul>
<hr>
<h2>Mail Me</h2>
<form action="mailto:arnabmandal77@gmail.com" method="post" enctype="text/plain">
<label for="email">Your name</label>
<input type="text" name="yourName" id=""><br><br>
<label for="email">Your Email</label>
<input type="email" name="yourEmail" id=""><br><br>
<label for="mesasge">Your Message</label><br>
<textarea name="yourMessage" id="" cols="30" rows="8"></textarea><br>
<input type="submit" name="" id="">
</form>
</body>
</html>