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

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

Modification of Text
文章の体裁を整えるタグ

文章全体の構成

  1. Make Heading <H1> -- <H6>
    見出しを付ける

  2. Align Paragraph <P> <CENTER> <DIV>
    文章の配置を決める

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

  3. Changing Line <BR> <P> <WBR> <NOBR>
    改行したり、行を開ける

    TAGresult on browser
    <BR> Act only as a carrige return
    改行するだけ
    [ Exp.]
    <P> Act as a carrige return with one blank line
    Treat a sentence as a paragraph
    改行して1行空ける.段落の切れ目
    [ Exp.]
    <WBR> Act as a hyphenation. Changes line
    at the point where this tag was inserted.
    ハフォンと同じで、次の文字が入りきらないと
    ここで改行する
    [ Exp.]
    <NOBR> Do not change line between this tag.
    このタグの間は改行されない
    ---</NOBR>

  4. Drawing Holizontal Line <HR>
    水平線を引く    【HR】

    Tag OPTION value
    <HR SIZE= "pix"
    WIDTH= "w%" or "pix"
    ALIGN= "left" or "right"
    NOSHADE >
    pix = pixcell, w%= % of the browser's width

    [[ Example ]]

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

  5. View as Pre-format style <PRE> --- <PRE>
    HTMLの書式のまま表示する

    Appear in non-proportional font. Space, tab and line feed will effect as it is on HTML. However, "<" or ">" does not always appear as it is.
    等幅フォントで表示され、スペースやタブ、改行もそのまま表示されるが、「<」や「>」はそのまま表示されるとは限らないので 「&lt」「&gt」を用いる

    Tag effect
    <PRE> view as HTML format--- </PRE>

    [[ Example ]]

  6. Making special meaning <ADDRESS> <BLOCKQUOTE>
    特殊な意味を持たせる

    Tag effect
    <ADDRESS> Appear in Italic
    イタリックで表示される
    --- </ADDRESS>
    <BLOCKQUOTE> Indentation to right
    右にずれる
    --- </BLOCKQUOTE>
    [ HOME ] - [ Previous ] - [ INDEX ] - [ NEXT ]

  7. Itemization and Listing <UL> <OL> <DL>
    箇条書きにする

    Each of these tag can make nesting.
    これらのタグは、それぞれ入れ子(ネスティング)を作ることができる

    Tag OPTION 2nd Tag end Tag
    <UL TYPE=(circle,square,disc) >
    ○,□,●
    <LI> --- </UL>
    <OL TYPE=(A,a,I,i,1)
    A,B,C/a,b,c/I,II,III/i,ii,iii/1,2,3
    with serial #
    通し番号付き
    START=(start #) >
    開始番号
    <LI TYPE=> --- </OL>
    <DL COMPACT >
    do not change line
    <DT> <DD> --- </DL>
    Result appears different in each browser.

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