-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContact-Details.html
30 lines (30 loc) · 975 Bytes
/
Contact-Details.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<h3>Contact-Details</h3>
<ol>
<li>Place : Hell</li>
<li>Town : YamaLokh</li>
<li>Contact-No : 1000000000</li>
</ol>
<form class="" action="index.html" method="post">
<label>Your Name:</label>
<input type="text" name="Your name" value=""><br>
<label>Do you want to learn new techs with me?</label>
<input type="radio"><br>
<label>Your E-mail:</label>
<input type="email" name="Your Mail" value=""><br>
<label>Enter your date-of-birth:</label>
<input type="date" name="date-of-birth"><br>
<label>Please upload your pic:</label>
<input type="file" ><br>
<label>Your Feedback:</label><br>
<textarea name="write anything..." rows="8" cols="20"></textarea><br>
<input type="submit" name="">
</form>
</body>
</html>