-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontactMe.html
42 lines (38 loc) · 1.51 KB
/
contactMe.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
<!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>
</head>
<body>
<h1>My Contact Details</h1>
<ul>
<li><a href="https://www.facebook.com/saransh.gangwar.35/">My Facebook Profile</a></li>
<li><a href="https://www.instagram.com/_sar_ansh/">My Instagram profile</a> </li>
<li><a href="https://www.linkedin.com/in/saransh-gangwar-0b56161ba/">My linkedin profile</a> </li>
</ul>
<p> It is good to connect with me on social media platforms, It is better than filling the form😊.</p>
<form action="">
<label>Name:
<input type="text"></label>
<br><br>
<label>DOB:
<input type="date"></label><br><br>
Gender: Male
<input type="checkbox">
Female<input type="checkbox"><br><br>
E-Mail Address: <input type="email"><br><br>
Mobile Number: <input type="tel"><br><br>
Any Social Media Platform link: <input type="url"><br><br>
Your Photograph/Id: <input type="file"><br><br>
Favourite colour:
<input type="color" name="" id=""><br><br>
Your Query: <input type="text"><br><br>
How much do you rate our website: <input type="range"><br><br>
<input type="reset" value="Reset">
<input type="submit" value="Submit">
</form>
</body>
</html>