[新着] Webテンプレートを仮オープンしました
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="ja" dir="ltr">
<head>
<title>テストページ</title>
<style type="text/css">
#history{
width: 30%;
height: 4em;
overflow: auto;
border-width: 1px;
border-style: solid;
}
#history table{
width: 100%;
}
p.test{ /* テスト用。不要 */
margin: 1000px 0px;
}
</style>
</head>
<body>
<h1>テストページ</h1>
<div id="history">
<h2>更新履歴</h2>
<table summary="このページの更新履歴です">
<tbody>
<tr>
<th>2006/8/25</th>
<td><a href="#diary">日記</a>を更新</td>
</tr>
<tr>
<th>2006/8/24</th>
<td><a href="#diary">日記</a>を更新</td>
</tr>
<tr>
<th>2006/8/23</th>
<td><a href="#diary">日記</a>を更新</td>
</tr>
</tbody>
</table>
</div>
<div id="diary">
<h2>日記</h2>
<p>朝起きたら夜だった</p>
<p class="test">この段落はテスト用につき不要</test>
</div>
</body>
</html>