-
Notifications
You must be signed in to change notification settings - Fork 0
/
Contact-me.html
36 lines (35 loc) · 1.12 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title><h1>Contact Information</h1></title>
</head>
<body class="contact" >
<p>
Contact Number - 99XXXXXX2<br>
Email - [email protected]<br>
Address - Sector-3, Rohini Delhi-110085
</p>
<hr />
<form action="mailto:[email protected]" method="post" enctype="">
<label>Your Good Name:</label>
<input type="text" name="yourName" value="">
<br />
<label>Please rate my website </label>
<input type="range" /> <br />
<label>Are you satisfied with my website?</label>
<input type="checkbox" /> <br />
<label>Today's date</label>
<input type="date" /> <br />
<label>Upload any of your photo</label>
<input type="file" /> <br />
<label>Want to play radio?</label>
<input type="radio" /> <br />
<label>Your Email</label>
<input type="email" name="yourEmail" value="" />
<label>Your kind words</label> <br />
<textarea name="yourMessage" rows="10" cols="30"></textarea>
<input type="submit" />
</form>
</body>
</html>