<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>
不等号「<」や「>」を表示するには
"<" 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」と記述する
HTMLにコメント文を入れるには【<!-- -->】
[[ Example ]]
< BODY | OPTIONs | value | |
---|---|---|---|
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 > |
[ HOME ] - [ Previous ] - [ INDEX ] - [ NEXT ]