HTML

發表於2008年08月18日 00:11 閱讀(0) 評論(0)

 

1.              水平線
<hr width=100% size=10>
<hr width=300 align="right" size="1 " />
2.   特殊字符
      &nbsp;                 空格
&lt;                      <
&gt;                     >
&amp;            &
&quot;            "
&shy;            
&copy;                ?
&reg;              ?
&#8482                ?
3.       超鏈接
<a href="www.163.com">網易</a>
4.       命名的錨站
命名的錨站用於創建指向同一頁面中指這位置的鏈接。
<h4 id="four">this is 錨站 four</h4>
<a href = "#four">goto four </a>
5.       有序列表
<ol>    
<li>text1
<li>text2
<li>text3
</ol>
效果:
1.     text1
2.     text2
3.     text3
<ol type = a >            小寫字母
<ol type = A >            大寫字母
<ol type = i >             小寫羅馬字母
<ol type = I>              大寫羅馬字母

<ol start = 5>
<li>text5
<li>text6
</ol>
效果:
5.     text5
6.     text6
6.       無序列表
<ul>
<li>text5
<li>text6
</ul>
text5 text6

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章