-
Notifications
You must be signed in to change notification settings - Fork 0
/
hobbies.html
34 lines (33 loc) · 1.12 KB
/
hobbies.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
<!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>Document</title>
</head>
<body>
<h1>Contact</h1>
<p>Phone: 079234324</p>
<p>Email: [email protected]</p>
<form action="">
<label for="">Your name: </label>
<input type="text">
<input type="submit"><br>
<input type="file" name=""><br>
<input type="datetime-local" name="" id=""><br>
<input type="radio" name="" id=""><br>
<input type="range" name="" id="">
</form>
<hr>
<form action="mailto:[email protected]" method="post">
<label for="">Your Name: </label>
<input type="text" name="yourName" id=""><br>
<label for="">Your Email: </label>
<input type="email" name="yourEmail" id=""><br>
<label for="">Your Message: </label>
<textarea name="yourText" id="" cols="10" rows="5"></textarea>
<input type="submit" value="Submit">
</form>
</body>
</html>