HTML--Note1--text

html文件:
<html>
<head>
	<title></title>
</head>
<body>

</body>
</html>


標題heading:

<h1>This is a Main Heading</h1>
<h2>This is a Level 2 Heading</h2>
<h3>This is a Level 3 Heading</h3>
<h4>This is a Level 4 Heading</h4>
<h5>This is a Level 5 Heading</h5>
<h6>This is a Level 6 Heading</h6>

段落paragraphs:

<p>The start of a paragraph is indicated by a new line.</p>

字體加粗bold:

<b>HTML</b>


斜體字italic:

<i>italic</i>


上標/下標superscript/subscript:

4<sup>th</sup> of September
CO<sub>2</sub>



強調(字體加粗)strong:

<strong></strong>

強調(字體傾斜)emphasis:

<em></em> 

 

縮寫/首字母縮寫abbreviation and acronym:

<abbr title="Professor">Prof</abbr>
<acronym title="National Aeronautics and Space Administration">NASA</acronym>

引用citation:

<cite>A Brief History of Time</cite>


標記對特殊術語或短語的定義definition:

<dfn>black hole</dfn>


引用語quotation:

<blockquote cite="http://en.wikipedia.org/wiki/Winnie-the-Pooh"><p>Did you ever stop to think, and forget to start again?</p></blockquote>
<p>As A.A. Milne said, <q>Some people talk to animals. Not many listen though. That's the problem.</q></p>
<blockquote> 與 </blockquote> 之間的所有文本都會從常規文本中分離出來,經常會在左、右兩邊進行縮進(增加外邊距),而且有時會使用斜體。



標記地址address:

<address></address>

插入和刪除insert and delete:

<del>delete</del> <ins>insert</ins>


強調strikethrough:

<s>$995</s>


換行Line Breaks:

<br />

水平分割線Horizontal Rules:
<hr />




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