-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontactme.html
38 lines (36 loc) · 1.53 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
<!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>
<h2>My Contact Details</h2>
<p>Mobile No - 7417000999</p>
<p> Email Id - [email protected]</p>
<p> <a href="https://www.linkedin.com/in/aditya-jain-a94425200/"target="_blank"> <img width="48" height="26" src="IMAGES/1200x630wa.png" alt="linkedin"></a>
<a href="https://www.instagram.com/aditya.jain_09/"target="_blank"> <img width="42" height="22" src="IMAGES/instagradientlogo.png" alt="insta"></a>
</p>
<hr>
<br>
<form action="mailto:[email protected]" method="POST" enctype="text/plain">
<label >Your Name:</label>
<input type="text" name="Client's Name"><br><br>
<label> Country you reside in:</label>
<input type="text"> <br><br>
<label>DOB:</label>
<input type="date" name="Client's DOB" id=""><br><br>
<label>Email Address:</label>
<input type="email" name="Client's mail" id=""><br><br>
<label>Your Message:</label>
<textarea name="Client's msg" id="" cols="20" rows="5"></textarea><br><br>
<label>Are you interested in coding nd stuff?</label>
<input type="checkbox" value=""><br><br>
<label>Password:</label>
<input type="password" name="Client's pass" id=""><br><br>
<input type="submit" value="Submit">
</form>
</body>
</html>