<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8">
<html>
<!-- 入口 --->
<!-- 上の一行は文字化けしないためのおまじない。META とかより合理的だと思う? --->
<head>
<title>HTML examles (paragraph and style)</title>
</head>
<body>
<h1>いろいろなtagの使い方</h1>

<div align="right"> upper-right 
 
<img align="right" src="../skono.gif" width="40" height="60" alt="top" usemap="#facemap"> 
</div>


<h2>HTMLにとって特殊な文字の出し方</h2>

<p>
&lt;&gt;&amp; こんなものでしょう。例えば、
<a href="c2html.pl">こんな</a>変換スクリプトが便利かもしれない。
</p>



<h2>align</h2>
<div>
<p align="left">  left </p>
<p align="right">  right </p>
<p align="center">  center </p>
<p>
<img align="top" src="../skono.gif" alt="top"> top
<img align="bottom" src="../skono.gif" alt="bottom"> bottom
<img align="middle" src="../skono.gif" alt="middle"> middle
</p>
<p>
&lt;Applet&gt;,
&lt;caption&gt;,
&lt;div&gt;,
&lt;h1-h6&gt;,
&lt;img&gt;,
&lt;p&gt;,
&lt;table&gt;,
&lt;td&gt;,
&lt;th&gt;,
&lt;tr&gt;に使えるようですね。
</p>
</div>


 
<h2>&lt;map&gt</h2>
<img align="left" src="../skono.gif" width="40" height="60" alt="top" usemap="#facemap"> 
<map name="facemap">
<area shape="rect" coords="0,0,20,30" href="1.html#upper-left">
<area shape="rect" coords="0,30,20,60" href="1.html#lower-left">
<area shape="rect" coords="20,0,40,30" href="1.html#upper-right">
<area shape="rect" coords="20,30,40,60" href="1.html#lower-right">
</map>
<div>

左の写真の右上をクリックすると、この文書の右上にいきます。
左上をクリックすると、この文書の右上にいきます。
その他はここに戻ります。
</div>


<h2>&lt;blockquote&gt;,dvi,p,q</h2>
<p>
えーと、

<blockquote>
Blockquoteは、こういうようになるらしいですね。
</blockquote>

<p>
Paragraphは、こういうようになるらしいですね。
</p>
<q>

Quoteは、こういうようになるらしいですね。
</q>

<div>
Divisionは、こういうようになるらしいですね。
</div>

<U>
U は、こういうようになるらしいですね。
</U>

<s>
strike は、こういうようになるらしいですね。
</s>
<del>
これでもいいらしい。
</del>
</p>


<h2>style</h2>
<p>

<b> bold ボールド</b>  と、
<i> italic イタリック</i> そして、
<big> big 大きめ</big> 
これだけ? <br>
<tt> program := alogorithm + data sturcture </tt> なんてのもあるみたい。
</p>
下付き添字<sub>down</sub>と
上付き添字<sup>up</sup>
</p>

<a href="http://bw-www.ie.u-ryukyu.ac.jp/~kono/kono/examples/2.html"> 次のページ</a>


<h2>&lt;address&gt;</h2>
<address>
河野真治 <br>
903-01 沖縄県
沖縄県中頭郡西原町字千原一番地
琉球大学
工学部情報工学科 <br>
<a href="http://bw-www.ie.u-ryukyu.ac.jp/~kono/"> Kono's home page </a> <br>
<div align="left"> 
 
lower-left
<img align="left" src="../skono.gif" width="40" height="60" alt="top" usemap="#facemap"> 
</div>
</address>

</body>
</html>