54 lines
1.4 KiB
CSS
54 lines
1.4 KiB
CSS
|
<!DOCTYPE html>
|
|||
|
<html>
|
|||
|
<head>
|
|||
|
<link rel="stylesheet" href="style.css" />
|
|||
|
<meta charset="utf-8">
|
|||
|
<title> Tab text </title>
|
|||
|
<!-- this is to be removed in the future -->
|
|||
|
<style>
|
|||
|
.disclaimer{
|
|||
|
font-size: 8pt;
|
|||
|
color: red;}
|
|||
|
</style>
|
|||
|
</head>
|
|||
|
<body>
|
|||
|
<table>
|
|||
|
<tr><td class="spacer" colspan=4 /></tr>
|
|||
|
<tr>
|
|||
|
<td class="left" />
|
|||
|
<td class="content">
|
|||
|
<p class="tiny"> Put some joke referring to the site’s contents </p>
|
|||
|
<h1> Head line </h1>
|
|||
|
<p class="disclaimer"> Disclaimer: This is a template file. Do not use unedited.
|
|||
|
</p>
|
|||
|
<p>
|
|||
|
Some text here.
|
|||
|
</p>
|
|||
|
This is an <span class="codeBlockInText">in-line code block</span>.
|
|||
|
</td>
|
|||
|
<td class="comment">
|
|||
|
<p style="border-style:none;">
|
|||
|
You will find some comments in this column: </p>
|
|||
|
<p class="general">
|
|||
|
General comments are gray. </p>
|
|||
|
<p class="explanation">
|
|||
|
Explanations are green and </p>
|
|||
|
<p class="warning">
|
|||
|
warnings are red. </p>
|
|||
|
</td>
|
|||
|
<td class="right" />
|
|||
|
</tr>
|
|||
|
<!-- Keep this here as a copying template!
|
|||
|
<tr>
|
|||
|
<td class="left" />
|
|||
|
<td class="content"> </td>
|
|||
|
<td class="comment"> </td>
|
|||
|
<td class="right" />
|
|||
|
</tr>
|
|||
|
-->
|
|||
|
<tr><td class="spacer" colspan=4 /></tr>
|
|||
|
</table>
|
|||
|
</body>
|
|||
|
</html>
|
|||
|
|