-
Notifications
You must be signed in to change notification settings - Fork 0
/
bai4.html
74 lines (70 loc) · 2.03 KB
/
bai4.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Document</title>
</head>
<body>
<ol style="list-style-type:upper-roman">
<li>item one</li>
<li>item two</li>
<li>item third</li>
<li>item four</li>
<ol style="list-style-type: lower-roman;">
<li>item 4.1</li>
<li>item 4.2</li>
<li>item 4.3</li>
</ol>
<li>item five</li>
</ol>
<hr>
<ol style="list-style-type: upper-roman;">
<li>Oakfield middle school</li>
<ol style="list-style-type: upper-alpha;">
<li>Tod Hastings</li>
<ol>
<li>Math(#3)</li>
<li>History(#2)</li>
<li>Science(#2)</li>
</ol>
<li>Bonita Chavez</li>
<ol>
<li>Math(#1)</li>
<li>History(#4)</li>
<li>Science(#3)</li>
</ol>
</ol>
<li>Parkview mid-highschool</li>
<ol style="list-style-type: upper-alpha;">
<li>jacue Russell</li>
<ol>
<li>Math(#2)</li>
<li>History(#5)</li>
<li>Science(#4)</li>
</ol>
<li>Dwayne Clancy</li>
<ol>
<li>Math(#4)</li>
<li>History(#7)</li>
<li>Science(#1)</li>
</ol>
</ol>
<li style="list-style-type: none;">.</li>
<li style="list-style-type: none;">.</li>
<li>jackson heights midlle school</li>
<ol style="list-style-type: upper-alpha;">
<li>Christine Quon</li>
<ol>
<li>Math(#7)</li>
<li>History(#6)</li>
<li>Science(#5)</li>
</ol>
<li>Roger Dietz</li>
<ol>
<li>Math(#5)</li>
<li>History(#8)</li>
<li>Science(#7)</li>
</ol>
</ol>
</ol>
</body>
</html>