Archive for 二月 21, 2008

html 序號標籤用法

§ ol (Different Types)

<ol type=a|a|i|i|1 value>
[說明]: 各種有序號列式

Example 1:
    <ol type=A>
        <lh><i>special centers in tnua</i></lh>
        <li>technological arts center</li>
        <li>trditional arts center</li>
        <li>performance arts center</li>
        <li>computer center</li>
    </ol>

     Special Centers in tnua 

  1. Technological Arts Center

  2. Trditional Arts Center

  3. Performance Arts Center

  4. Computer Center

Example 2: 
    <ol type=A>      
        <lh><i>special centers in tnua</i></lh>       
        <li>technological arts center</li>       
        <li>trditional arts center</li>       
        <li>performance arts center</li>       
        <li>computer center</li>   
        </ol>

  
    Special Centers in tnua 
  a. Technological Arts Center
  b. Trditional Arts Center
  c. Performance Arts Center
  d. Computer Center

Example 3:
  <ol type=I>
  <lh><i>special centers in tnua</i></lh>
  <li>technological arts center</li>
  <li>trditional arts center</li>
  <li>performance arts center</li>
  <li>computer center</li>
  </ol>

    special centers in tnua

  1. technological arts center
  2. trditional arts center
  3. performance arts center
  4. computer center

Example 4:
  <ol type=i>
  <lh><i>special centers in tnua</i></lh>
  <li>technological arts center</li>
  <li>trditional arts center</li>
  <li>performance arts center</li>
  <li>computer center</li>
  </ol>

    special centers in tnua

  1. technological arts center
  2. trditional arts center
  3. performance arts center
  4. computer center

Example 5:
  <ol type=1>
  <lh><i>special centers in tnua</i></lh>
  <li>technological arts center</li>
  <li>trditional arts center</li>
  <li>performance arts center</li>
  <li>computer center</li>
  </ol>

    special centers in tnua

  1. technological arts center
  2. trditional arts center
  3. performance arts center
  4. computer center

§ ul (Different Types)

<ul type=square|disc|circle value>
[說明]: 各種無序號列式 (只適用Netscape)
Example 1:
<ul type=square>
<lh><i>special centers in tnua</i></lh>
<li>technological arts center</li>
<li>trditional arts center</li>
<li>performance arts center</li>
<li>computer center</li>
</ul>

    special centers in tnua

  • technological arts center
  • trditional arts center
  • performance arts center
  • computer center

Example 2:
<ul type=disk>
<lh><i>special centers in tnua</i></lh>
<li>technological arts center</li>
<li>trditional arts center</li>
<li>performance arts center</li>
<li>computer center</li>
</ul>

    special centers in tnua

  • technological arts center
  • trditional arts center
  • performance arts center
  • computer center

Example 3:
<ul type=circle>
<lh><i>special centers in tnua</i></lh>
<li>technological arts center</li>
<li>trditional arts center</li>
<li>performance arts center</li>
<li>computer center</li>
</ul>

    special centers in tnua

  • technological arts center
  • trditional arts center
  • performance arts center
  • computer center

Example 4:
<ol >
<li>red sox</li>
<li>cubs</li>
<li type=I>royals</li>
<li>dodgers</li>
<li>indians</li>
</ol>

  1. red sox
  2. cubs
  3. royals
  4. dodgers
  5. indians

Example 5:
<ul type=square>
<li>red sox</li>
<li>cubs</li>
<li type=circle>royals</li>
<li>dodgers</li>
<li>indians</li>
</ul>

  • red sox
  • cubs
  • royals
  • dodgers
  • indians

張貼留言