2011年11月30日 星期三

HTML學習二:HTML結構

本篇資料皆是W3C官方文件的整理
1.HTML結構介紹
(Introduction to the structure of an HTML document)

An HTML 4 document is composed of three parts:

一個HTML4的文件是由以下三個部分所組成
  • 一段宣告HTML版本的訊息,例如:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
一個簡易的HTML Document範例


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<HTML>
  <HEAD>
     <TITLE>My first HTML document</TITLE>
  </HEAD>
  <BODY>
     <P>Hello world!
  </BODY>
</HTML>


or

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
"http://www.w3.org/TR/html4/frameset.dtd">
<HTML>
  <HEAD>
   <TITLE>A simple frameset document</TITLE>
  </HEAD>
 <FRAMESET cols="20%, 80%">
 <FRAMESET rows="100, 200">
  <FRAME src="contents_of_frame1.html">
  <FRAME src="contents_of_frame2.gif">
 </FRAMESET>
 <FRAME src="contents_of_frame3.html">
  <NOFRAMES>
   <P>This frameset document contains:
   <UL>
    <LI><A href="contents_of_frame1.html">Some neat contents</A>
    <LI><IMG src="contents_of_frame2.gif" alt="A neat image">
    <LI><A href="contents_of_frame3.html">Some other neat contents</A>
   </UL>
  </NOFRAMES>
 </FRAMESET>
</HTML>


------------------------------------------
|Frame 1     |Frame 3       |Frame 4       |
|            |              |              |
|            |              |              |
|            |              |              |
|            |              |              |
|            |              |              |
|            |              |              |
|            |              |              |
-------------|              |              |
|Frame 2     |              |              |
|            |              |              |
|            |              |              |
------------------------------------------



資料來源
W3C
http://www.w3.org/TR/html401/struct/global.html

沒有留言:

張貼留言