-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
102 lines (90 loc) · 1.87 KB
/
index.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>A Pen by Chiwei</title>
</head>
<body>
<div>
<h1>Hello</h1>
<p>
Hello, my name is Chiwei.
</p>
</div>
<div>
<p>
<h4>Hobbies</h4>
I like to play video games and read.
<br>
This is a list of books I have read and would recommend for other people:</p>
<ol type="I">
<li>Maze Runner</li>
<br>
<li>Percy Jackson</li>
<br>
<li>American Gods</li>
<br>
<li>Speak</li>
</ol>
</div>
<div>
<h4>My School</h4>
<p>My school is called Fuhsing, and I've been a student in Fuhsing for more than 9 years.</p>
<p>This is what Fuhsing looks like</p>
<img src="http://www.krisyaoartech.com/assets/upload/images/029.jpg" alt="this is fuhsing">
<p>
<a href="http://www.fhjh.tp.edu.tw/dispPageBox/mainHP.html" target="_blank">My School's Website</a>
</p>
</div>
<div>
<h4>School Projects</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/aOyOUPOGSlY" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
</div>
<div>
<h4>Contact Me</h4>
<form action="">
<label for="">Your Name</label>
<input type="text" value="">
<br>
<label for="">Your Birthday</label>
<input type="date" value="">
<br>
<select>
<option value="">Boy</option>
<option value="">Girl</option>
<option value="">Other</option>
</select>
<br>
<button>Send</button>
</form>
</div>
<div>
<h4>Western Gods</h4>
<table>
<thead>
<tr>
<td>
Greek Name
</td>
<td>
Roman Name
</td>
</tr>
</thead>
<tbody>
<tr>
<td>Zeus</td>
<td>Jupiter</td>
</tr>
<tr>
<td>
Hades
</td>
<td>
Pluto
</td>
</tr>
</table>
</div>
</body>
</html>