-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContact me.html
52 lines (50 loc) · 1.36 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
40
41
42
43
44
45
46
47
48
49
50
51
52
<!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 me</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h3>Contact Details</h3>
<table>
<tr>
<td>My Mob:</td>
<td>+91_9519560077</td>
</tr>
<tr>
<td>E mail:</td>
<td>[email protected]</td>
</tr>
<tr>
<td>Instagram:</td>
<td>https://www.instagram.com/examfobia</td>
</tr>
<tr>
<td>Facebook :</td>
<td>https://www.facebook.com/examfobia</td>
</tr>
<tr>
<td>Twitter:</td>
<td>https://www.twitter.com/examfobia</td>
</tr>
</table>
<hr />
<h3>Contact me</h3>
<form action="mailto:[email protected]" method="post" enctype="text/plain" >
Name : <input type="text" name="Name" id="" />
<br />
<br />
Email : <input type="email" name="Email" id="" />
<br>
<br>
Mob No.: <input type="number" name="Number" id=""/>
<br>
<br>
Address : <textarea name="" id="" cols="30" rows="10"></textarea>
<input type="submit" value="submit">
</form>
</body>
</html>