1,HTML語言不區分大小寫 頁頭標簽: <title> </titile> 標題標簽: <hn> </hn> 可以使用屬性 align 例如align="right" hn中的n取值越大,顯示的字越小。 格式排版標簽: <br> 換行 <hr> 網頁水平線標簽 屬性:<hr align='"cen ...
1,HTML語言不區分大小寫
頁頭標簽:
<title> </titile>
標題標簽:
<hn> </hn>
可以使用屬性 align
例如align="right"
hn中的n取值越大,顯示的字越小。
格式排版標簽:
<br> 換行
<hr> 網頁水平線標簽 屬性:<hr align='"center" width="400" size="4" color="blue">
<font> </font>文字格式標簽 屬性: face(字體樣式) size(字體大小)color(字體顏色)
<p> </p> 段落標簽 屬性:left right center
<pre> </pre> 預定格式標簽
<!--註釋語句--> 註釋標簽
列表標簽:
有序列表
<ol>
<li> 列表項</li>
</ol>
無序列表
<ul>
<li> 列表項</li>
</ul>
自定義列表:
<dl>
<dt>Java程式設計</dt>
<dd>要求具有...</dd>
</dl>