-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhobbies.html
More file actions
28 lines (26 loc) · 887 Bytes
/
hobbies.html
File metadata and controls
28 lines (26 loc) · 887 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>My Hobbies</title>
</head>
<body>
<h3>My Hobbies</h3>
<ol>
<li>All kinds of Sports, soccer basketball golf etc</li>
<li>Movies and music and other arts </li>
<li>A little bit of cooking </li>
<li> Outdoor activities </li>
</ol>
<form action="mailto:liyizhou120@gmail.com" method="post" enctype="text/plain">
<label for=""> Your Name: </label>
<input type="text" name = "yourName">
<br>
<label for="">Your Email: </label>
<input type="email" name = "yourEmail">
<label for="">Your Message</label><br>
<textarea name="yourMessage" id="" cols="30" rows="10"></textarea>
<input type="submit">
</form>
</body>
</html>