-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
27 lines (27 loc) · 973 Bytes
/
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
<!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>
<h3>Contact Me</h3>
<p>Email ID: subham123@gmail.com ❌</p>
<p>Mobile No: 9410194701 ❌</p>
<p>Twitter: <a href="https://twitter.com/subuxd_">Connect</a> ✅</p>
<hr>
<h3>Message Me</h3>
<form action="mailto:subhamkumarsingh2401@gmail.com" method="post">
<label for="">Your Name:</label>
<input type="text" name="YourName"> <br> <br>
<label for="">Your Email:</label>
<input type="email" name="YourEmail"> <br> <br>
<label for="">Your Message:📩</label> <br>
<textarea name="YourMessage" id="" cols="30" rows="10"></textarea> <br> <br>
<input type="submit">
<input type="reset">
</form>
</body>
</html>