HTML 開發手冊login
HTML 開發手冊
作者:php.cn  更新時間:2022-04-11 17:45:33

HTML 速查列表



HTML 速查清單. 你可以列印它,以備日常使用。


HTML 基本文件

實例

#
<!DOCTYPE html>
<html>
<head>
<title>文档标题</title>
</head>
<body>
可见文本...
</body>
</html>
點擊"執行實例" 按鈕可查看線上實例











##基本標籤(Basic Tags)

<h1>最大的標題</h1>
<h2> . . . </h2>
#< h3> . . . </h3>
<h4> . . . </h4>
<h5> .# . . </h6>

<p>這是一個段落。 </p>
<br> (換行)
<hr> (水平線)
<!-- 這是註解 -->


文字格式化(Formatting)


<b>粗體文字</b>
<code>電腦程式碼</code>
<em>強調文字< ;/em>
<i>斜體文字</i>
<kbd>鍵盤輸入</kbd>

<pre>預先格式化文字</pre>

<small>更小的文字</small>
<strong>重要的文字</strong>

<abbr> (縮寫)
<address>聯絡資訊)
<bdo> (文字方向)
<blockquote> (從另一個來源引用的部分)
<cite> (工作的名稱)
<del> (刪除的文字)
<ins> (插入的文字)
<sub> (下標文字)

<sup> (上標文字)

連結(Links)
###普通的連結: <a href="http://www.example.com/">連結文字</a>###圖片連結: < a href="http://www.example.com/"><img src="URL" alt="替換文字"></a>###郵件連結: <a href=" mailto:webmaster@example.com">寄e-mail</a>######書籤:###<a id="tips">提示部分</a>###< ;a href="#tips">跳到提示部分</a>#########圖片(Images)#########<img src="URL" alt ="替換文字" height="42" width="42">#######

樣式/區塊(Styles/Sections)

<style type="text/css">
  h1 {color:red;}
  p {color:blue;}
</style>
<div>文件中的區塊級元素</div>
<span>文件中的內聯元素< ;/span>

無序列表

<ul>
  <li>项目</li>
  <li>项目</li>
</ul>

有序列表

<ol>
  <li>第一项</li>
  <li>第二项</li>
</ol>

定義清單

<dl>
  <dt>项目 1</dt>
    <dd>描述项目 1</dd>
  <dt>项目 2</dt>
    <dd>描述项目 2</dd>
</dl>

#表格(Tables)

<table border="1">
  <tr>
      <th>表格标题</th>
      <th>表格标题</th>
  </tr>
  <tr>
      <td>表格数据</td>
      <td>表格数据</td>
  </tr>
</table>

框架(Iframe)

<iframe src="demo_iframe.htm"></iframe>

表單(Forms)

<form action="demo_form.php" method="post/get">
<input type="text" name="email" size="40" maxlength="50">
<input type="password">
<input type="checkbox" checked="checked">
<input type="radio" checked="checked">
<input type="submit" value="Send">
<input type="reset">
<input type="hidden">
<select>
<option>苹果</option>
<option selected="selected">香蕉</option>
<option>樱桃</option>
</select>
<textarea name="comment" rows="60" cols="20"></textarea>
</form>

實體(Entities )

< 等同於 <
> 等同於 >
© 等同於 ©

PHP中文網