HIRO's Home Page [[ HTML Tag Reference (1)]]

Based on HTML version ##
[ HOME ] - [ Previous ] - [ INDEX ] - [ NEXT ]

General rule of HTML and Tag
HTMLの文章全般に関するtagと規則

  1. TAG
    • Syntax of TAG (タグの書式)
      < TAG OPTION1=value OPTION2=value OPTION3=value >

    • Most of tag should be in pair (ほとんどのタグは対になって使われる)
      Specific effect of the TAG will effect only between < TAG > and < /TAG >
      タグの効果が有効なのは < TAG >< /TAG >の間だけ

    • TAG has options. (タグにはいくつかのオプションがある)
      Some of TAG has optional properties. A value of the property could be specified as the format shown above. TAG and OPTION could be writen in either capital or small letter.
      いくつかのオプションを持ったタグがある。タグもオプションも小文字でも大文字で記述してもよい

  2. Basic Structure of HTML < HTML > < HEAD > < BODY >
     HTMLの基本的な構造

     <HTML>    Starting of HTML				HTMLの開始
    
       <HEAD>      Starting of Head Part			「HEAD」部分の開始
           <TITLE> This is a TITLE of the HTML</TITLE>
                        This will not appear on your browse's view.
                        This will be appeared on the Title Bar of the browser.
                        これは「TITLE」なのでブラウザのタイトルバーにしか表示されない
       </HEAD>     End of the Head Part			「HEAD」部分の終わり
    
       <BODY>
         Main part of the discription		ここが文書の主要部分
              -------------------
       </BODY>
    
     </HTML>
    
[ HOME ] - [ Previous ] - [ INDEX ] - [ NEXT ]

Limitation of Characters used in HTML
HTML文書で使える文字の制限

  1. Space and Tab
    【スペースとタブ】

    More than one space(or tab) will be neglected and only one space will effect on the view.
    スペースやタブは1個以上続けてもスペース1個分しか表示されない.しかし、全角のスペースはそのまま個数分表示される.

    [[ Example ]]

  2. How to express < and > "& lt" "& gt"
    不等号「<」「>」を表示するには 
    "<" and ">" is a special control code for HTML. If you have to express "<" or ">" on a browser's view, you have to discribe as "& lt" or "& gt" on HTML text.
    HTMLでは "< " や "> " はタグの開始を意味する特殊文字なので使えない。 "< " や "> "をブラウザで表すためには「&lt」「&gt」と記述する

    [[ Example ]]

  3. How to put comment in HTML < !-- -->
    HTMLにコメント文を入れるには【<!-- -->】
    [[ Example ]]

[ HOME ] - [ Previous ] - [ INDEX ] - [ NEXT ]

Change Background and Text Color: <BODY>
背景と文書の色を指定する


< BODYOPTIONsvalue
BGCOLOR=
background color
color code#
exp. #ffffff(white)
Color Code#
#rrggbb

#000000(black)
#ffffff(white)
#ff0000(red)
#00ff00(green)
#0000ff(blue)
#00ffff(sky)
#ffff00(yellow)
#ff00ff(purpule)
TEXT=
color of text
color code#
exp. #000000(black)
LINK=
color of linked text
which never selected
color code#
exp. #0000ff(blue)
VLINK=
color of linked text
which had selected
color code#
exp. #ff00ff(purpule)
ALINK=
color of linked text
which is in selection
color code#
exp. #ff0000(red)
BACKGROUND=
Image of background
"image file name" >
exp.
"SampleWall.gif"
**** < /BODY >

[[ Example ]]

[ HOME ] - [ Previous ] - [ INDEX ] - [ NEXT ]