-
Notifications
You must be signed in to change notification settings - Fork 0
/
contactme.html
32 lines (30 loc) · 1012 Bytes
/
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
<!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>Email-id :</h1>
<h4>[email protected]</h4>
<hr>
<h1>phone-no:</h1>
<h3>+91 6297618028</h3>
<hr>
<h2>Connect With Me :</h2>
<form class="" action="mailto:[email protected]" method="post">
<label>Your Name:</label>
<input type="text" name=""><br>
<label>Your Email:</label>
<input type="email" name=""><br>
<label>Are you a Student?</label><br>
<input type="checkbox">Yes</input>
<input type="checkbox">No</input><br>
<textarea rows="4" cols="50" name="comment" form="usrform">
Enter text your message here...</textarea>
<input type="submit" name="">
</form>
</body>
</html>