いやいや、今回は早めに書いてみました。
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=euc-jp"> <title> Old Sample </title> </head> <body> <table align="center" border="1" bordercolor="black"> <tr> <td bgcolor="white" align="center" width="400pt" height="30pt"> <font face="bold" color="orange" size="+2"> タイトル </font> </td> </tr> </table> <table bgcolor="green"> <tr> <td> <p> <font color="white" bgcolor="green"> 本文をここから書いていきます。<br>もしもコメントを途中に入れるときは、 <font color="yellow">ここがコメントです。</font> のように入れていきます。</font> </p> </td> </tr> </table> </body> </html>
<!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="ja">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=euc-jp">
<meta http-equiv="Content-Style-Type" content="text/css">
<base target="page">
<link rev="made" href="mailto:sugiura@isp.ne.jp">
<link rel="next" href="../yome/index.html">
<style type="text/css">
<!--
.PageTitle{
color:orange;
background-color:white;
font-size:larger;
font-weight:bold;
text-align:center;
width:400pt;
line-height:30pt;
margin:0px;
border: 1pt solid black}
.PageComment{
color:yellow}
.PageText{
color:white;
background-color:green}
-->
</style>
<title>
CSS Sample
</title>
</head>
<body>
<div class="PageTitle">
タイトル
</div>
<p class="PageText">
本文をここから書いていきます。<br>もしもコメントを途中に入れるときは、
<span class="PageComment">ここがコメントです。</span>
のように入れていきます。
</p>
</body>
</html>
| Go to previous page | Go to next page |