examplef5.html
来自「此源码为机械工业出版社出版的《Java语言程序设计》第三版所配套的书中所有源代码」· HTML 代码 · 共 29 行
HTML
29 行
<html>
<head>
<title>Demonstraitng Table Tags</title>
</head>
<body bgcolor=white>
<!-- Example E.5 Table Tags -->
<center>Table Tags</center>
<br>
<table border=2>
<caption>This is a Table</caption>
<tr>
<th>Table heading</th>
<td>Table data</td>
</tr>
<tr>
<th valign=bottom>Second row
<td>Embedded Table
<table border=3>
<tr>
<th>Table heading</th>
<td align=right>Table data</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?