<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> <>& こんなものでしょう。例えば、 <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> <Applet>, <caption>, <div>, <h1-h6>, <img>, <p>, <table>, <td>, <th>, <tr>に使えるようですね。 </p> </div> <h2><map></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><blockquote>,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><address></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>