HTML2

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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
<!DOCTYPE html>
<html>
<head>
<title>My page2</title>
<meta charset="utf-8">
</head>
<body>
<p><a href="https://jackhvikee.github.io/">This is my blog</a></p>

<ul>
<li type="circle">咖啡</li>
<li type="circle">牛奶</li>

</ul>
<ol>
<li type="square">咖啡</li>
<li type="square">牛奶</li><br>
<li type="a">牛奶</li>
<li type="a">咖啡</li>
<li type="a">橙汁</li>
</ol>

<pre><font size="4">列表第一项
第一项定义和描述<br>列表第二项
第二项定义和描述</font>
</pre>
<h3>一个嵌套列表:</h3>

<ul>
<li>咖啡</li>
<li>茶
<ul type="circle">
<li>红茶</li>
<li>绿茶
<ul type="sqare">
<li>中国茶</li>
<li>非洲茶</li>
</ul>

</li>

</ul>

</li>
<li>牛奶</li>
</ul>

<table border="2" cellpadding="40" width="500" align="center">
<tr>
<td bgcolor="green">1.1</th>
<td bgcolor="red">1.2</th>
</tr>
<tr>
<td bgcolor="blue">2.1</th>
<td bgcolor="yellow">2.2</th>
</tr>
<tr>

<td colspan="2" bgcolor="pink">合并呀呀呀呀呀呀呀呀😀😀😆😆🥰🥰</td>

</tr>

</table><br>

<table border="2" cellpadding="50" width="500" align="center">
<tr>
<td colspan="2"></td>
<td rowspan="2"></td>

</tr>
<tr>
<td rowspan="2"></td>
<td bgcolor="green"></td>
</tr>
<tr>

<td colspan="2"></td>

</tr>
</table><br>

<table border="2" cellpadding="13" width="800" align="center">
<tr>
<th colspan="7">课程表</td>
</tr>

<tr>
<th>时间</th>
<th>节次</th>
<th>星期一</th>
<th>星期二</th>
<th>星期三</th>
<th>星期四</th>
<th>星期五</th>
</tr>

<tr>
<th rowspan="2">上午</th>
<th bgcolor="green">第1~2节</th>
<th bgcolor="green">网页制作</th>
<th bgcolor="green">C语言</th>
<th>数据结构</th>
<th bgcolor="red">C语言</th>
<th bgcolor="red">网页制作</th>

</tr>

<tr>
<th>第3~4节</th>
<th bgcolor="green">网页制作</th>
<th>高等数学</th>
<th bgcolor="red">数据结构</th>
<th>大学英语</th>
<th>网页制作</th>
</tr>

<tr>
<th>下午</th>
<th>第5~6节</th>
<th bgcolor="green">网页制作</th>
<th>C语言</th>
<th bgcolor="red">数据结构</th>
<th>C语言</th>
<th>网页制作</th>
</tr>

<tr>
<th>晚上</th>
<th>思念TC</th>
<th bgcolor="green">思念TC</th>
<th>思念TC</th>
<th bgcolor="red">思念TC</th>
<th>思念TC</th>
<th>思念TC</th>
</tr>

<tr>
<th>深夜</th>
<th>梦进TC</th>
<th bgcolor="green">梦进TC</th>
<th>梦进TC</th>
<th>梦进TC</th>
<th bgcolor="red">梦进TC</th>
<th bgcolor="red">梦进TC</th>

</tr>

</table> <br><br><br><br><br><br><br><br><br><br><br><br><br><br>


<!-- <table border="1" width="500">
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
</table> -->

</ul>





</body>
</html>

It’s so so weird…

Share