HTML Quick Reference Notes
2024-04-21 00:48:21

image

随笔

HTML 速查列表

1
2
3
4
5
6
7
<!DOCTYPE html>
<html>
<head>
<title>文档标题</title>
</head>
<body>可见文本...</body>
</html>

基本标签(Basic Tags)

1
2
3
4
5
6
7
8
9
10
<h1>最大的标题</h1>
<h2> . . . </h2>
<h3> . . . </h3>
<h4> . . . </h4>
<h5> . . . </h5>
<h6>最小的标题</h6>
<p>这是一个段落。</p>
<br> (换行)
<hr> (水平线)
<!-- 这是注释 -->

文本格式化(Formatting)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<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)


普通的链接

1
<a href="http://www.example.com/">链接文本</a>

图像链接

1
<a href="http://www.example.com/"><img src="URL" alt="替换文本"></a>

邮件链接

1
<a href="mailto:[email protected]">发送e-mail</a>

书签

1
<a id="tips">提示部分</a><a href="#tips">跳到提示部分</a>

图片(Images)

1
<img src="URL" alt="替换文本" height="42" width="42">

样式/区块(Styles/Sections)

1
2
3
4
5
6
7
8
9
10
11
12
<style type="text/css">

h1
{
color:red;
}
p
{
color:blue;
}
</style><div>文档中的块级元素</div>
<span>文档中的内联元素</span>

无序列表

1
2
3
4
<ul>   
<li>项目</li>
<li>项目</li>
</ul>

有序列表

1
2
3
4
<ol>   
<li>第一项</li>
<li>第二项</li>
</ol>

定义列表

1
2
3
4
5
6
<dl> 
<dt>项目 1</dt>
<dd>描述项目 1</dd>
<dt>项目 2</dt>
<dd>描述项目 2</dd>
</dl>

表格(Tables)

1
2
3
4
5
6
7
8
9
10
<table border="1"> 
<tr>
<th>表格标题</th>
<th>表格标题</th>
</tr>
<tr>
<td>表格数据</td>
<td>表格数据</td>
</tr>
</table>

框架(Iframe)

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

表单(Forms)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<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)

1
&lt; 等同于 <&gt; 等同于 >&#169; 等同于 ©

HTML标签合集(附学习地址)

<!--...-->
| 定义注释 |

<!DOCTYPE>
| 定义文档类型 |

<a>
(http://www.runoob.com/tags/tag-a.html) 
| 定义超文本链接 |

<abbr>
(http://www.runoob.com/tags/tag-abbr.html)
 | 定义缩写 |

<acronym>
(http://www.runoob.com/tags/tag-acronym.html)
| 定义只取首字母的缩写,不支持HTML5 |

<address>
(http://www.runoob.com/tags/tag-address.html) 
| 定义文档作者或拥有者的联系信息 |

<applet>
(http://www.runoob.com/tags/tag-applet.html) 
| HTML5中不赞成使用。定义嵌入的 applet。 |

<area>
(http://www.runoob.com/tags/tag-area.html) 
| 定义图像映射内部的区域 |

<article>
(http://www.runoob.com/tags/tag-article.html)
| 定义一个文章区域 |

<aside>
(http://www.runoob.com/tags/tag-aside.html)
| 定义页面的侧边栏内容 |

<audio>
(http://www.runoob.com/tags/tag-audio.html)
| 定义音频内容 |

<b>
(http://www.runoob.com/tags/tag-b.html)
 | 定义文本粗体 |

<base>
(http://www.runoob.com/tags/tag-base.html) 
| 定义页面中所有链接的默认地址或默认目标.|

<basefont>
(http://www.runoob.com/tags/tag-basefont.html)
 | HTML5不支持,不赞成使用。定义页面中文本的默认字体、颜色或尺寸. |

<bdi>
(http://www.runoob.com/tags/tag-bdi.html)
 | 允许您设置一段文本,使其脱离其父元素的文本方向设置.|

<bdo>
(http://www.runoob.com/tags/tag-bdo.html) 
| 定义文字方向 |

<big>
(http://www.runoob.com/tags/tag-big.html) 
| 定义大号文本,HTML5不支持 |

<blockquote>
(http://www.runoob.com/tags/tag-blockquote.html) 
| 定义长的引用 |

<body>
(http://www.runoob.com/tags/tag-body.html)
 | 定义文档的主体 |

<br>
(http://www.runoob.com/tags/tag-br.html)
 | 定义换行 |

<button>
(http://www.runoob.com/tags/tag-button.html)
 | 定义一个点击按钮 |

<canvas>
(http://www.runoob.com/tags/tag-canvas.html)
 | 定义图形,比如图表和其他图像,标签只是图形容器,您必须使用脚本来绘制图形 |

<caption>
(http://www.runoob.com/tags/tag-caption.html) 
| 定义表格标题 |

<center>
(http://www.runoob.com/tags/tag-center.html)
 | HTML5不支持,不赞成使用。定义居中文本。 |

<cite>
(http://www.runoob.com/tags/tag-cite.html) 
| 定义引用(citation) |

<code>
(http://www.runoob.com/tags/tag-code.html)
 | 定义计算机代码文本 |

<col>
(http://www.runoob.com/tags/tag-col.html)
 | 定义表格中一个或多个列的属性值 |

<colgroup>
(http://www.runoob.com/tags/tag-colgroup.html) 
| 定义表格中供格式化的列组 |

<command>
(http://www.runoob.com/tags/tag-command.html)
| 定义命令按钮,比如单选按钮、复选框或按钮 |

<datalist>
(http://www.runoob.com/tags/tag-datalist.html)
 | 定义选项列表。请与 input 元素配合使用该元素,来定义 input 可能的值. |

<dd>
(http://www.runoob.com/tags/tag-dd.html) 
| 定义定义列表中项目的描述 |

<del>
(http://www.runoob.com/tags/tag-del.html)
 | 定义被删除文本 |

<details>
(http://www.runoob.com/tags/tag-details.html)
 | 用于描述文档或文档某个部分的细节 |

<dfn>
(http://www.runoob.com/tags/tag-dfn.html)
 | 定义定义项目 |

<dialog>
(http://www.runoob.com/tags/tag-dialog.html)
| 定义对话框,比如提示框 |

<dir>
(http://www.runoob.com/tags/tag-dir.html) 
| HTML5不支持,不赞成使用。定义目录列表。 |

<div>
(http://www.runoob.com/tags/tag-div.html)
 | 定义文档中的节 |

<dl>
(http://www.runoob.com/tags/tag-dl.html) 
| 定义列表详情 |

<dt>
(http://www.runoob.com/tags/tag-dt.html) 
| 定义列表中的项目 |

<em>
(http://www.runoob.com/tags/tag-em.html)
 | 定义强调文本 |
<embed>
(http://www.runoob.com/tags/tag-embed.html)
| 定义嵌入的内容,比如插件。 |

<fieldset>
(http://www.runoob.com/tags/tag-fieldset.html) 
| 定义围绕表单中元素的边框 |

<figcaption>
(http://www.runoob.com/tags/tag-figcaption.html)
| 定义<figure> 元素的标题 |

<figure>
(http://www.runoob.com/tags/tag-figure.html)
 | 规定独立的流内容(图像、图表、照片、代码等等)。 |

<font>
(http://www.runoob.com/tags/tag-font.html) 
| HTML5不支持,不赞成使用。定义文字的字体、尺寸和颜色。 |

<footer>
(http://www.runoob.com/tags/tag-footer.html)
 | 定义 section 或 document 的页脚。 |

<form>
(http://www.runoob.com/tags/tag-form.html) 
| 定义了HTML文档的表单 |

<frame>
(http://www.runoob.com/tags/tag-frame.html) 
| 定义框架集的窗口或框架 |

<frameset>
(http://www.runoob.com/tags/tag-frameset.html) 
| 定义框架集 |

<h1> to <h6>
(http://www.runoob.com/tags/tag-hn.html)
 | 定义 HTML 标题 |

<head>
(http://www.runoob.com/tags/tag-head.html)
 | 定义关于文档的信息 |

<header>
(http://www.runoob.com/tags/tag-header.html)
 | 定义了文档的头部区域 |

<hr>
(http://www.runoob.com/tags/tag-hr.html) 
| 定义水平线 |

<html>
(http://www.runoob.com/tags/tag-html.html)
 | 定义 HTML 文档 |

<i>
(http://www.runoob.com/tags/tag-i.html) 
| 定义斜体字 |

<iframe>
(http://www.runoob.com/tags/tag-iframe.html) 
| 定义内联框架 |

<img>
(http://www.runoob.com/tags/tag-img.html) 
| 定义图像 |

<input>
(http://www.runoob.com/tags/tag-input.html) 
| 定义输入控件 |

<ins>
(http://www.runoob.com/tags/tag-ins.html)
 | 定义被插入文本 |

<kbd>
(http://www.runoob.com/tags/tag-kbd.html) 
| 定义键盘文本 |

<keygen>
(http://www.runoob.com/tags/tag-keygen.html)
| 规定用于表单的密钥对生成器字段。 |

<label>
(http://www.runoob.com/tags/tag-label.html) 
| 定义 input 元素的标注 |

<legend>
(http://www.runoob.com/tags/tag-legend.html) 
| 定义 fieldset 元素的标题。 |

<li>
(http://www.runoob.com/tags/tag-li.html)
 | 定义列表的项目 |

<link>
(http://www.runoob.com/tags/tag-link.html) 
| 定义文档与外部资源的关系 |

<map>
(http://www.runoob.com/tags/tag-map.html)
 | 定义图像映射 |

<mark>
(http://www.runoob.com/tags/tag-mark.html)
| 定义带有记号的文本。请在需要突出显示文本时使用 <m> 标签。 |

<menu>
(http://www.runoob.com/tags/tag-menu.html) 
| 不赞成使用。定义菜单列表。 |

<meta>
(http://www.runoob.com/tags/tag-meta.html) 
| 定义关于 HTML 文档的元信息。 |

<meter>
(http://www.runoob.com/tags/tag-meter.html)
| 定义度量衡。仅用于已知最大和最小值的度量。 |

<nav>
(http://www.runoob.com/tags/tag-nav.html)
 | 定义导航链接的部分 |

<noframes>
(http://www.runoob.com/tags/tag-noframes.html) 
| 定义针对不支持框架的用户的替代内容。HTML5不支持 |

<noscript>
(http://www.runoob.com/tags/tag-noscript.html) 
| 定义针对不支持客户端脚本的用户的替代内容。 |

<object>
(http://www.runoob.com/tags/tag-object.html) 
| 定义内嵌对象 |

<ol>
(http://www.runoob.com/tags/tag-ol.html) 
| 定义有序列表。 |

<optgroup>
(http://www.runoob.com/tags/tag-optgroup.html) 
| 定义选择列表中相关选项的组合。 |

<option>
(http://www.runoob.com/tags/tag-option.html) 
| 定义选择列表中的选项。 |

<output>
(http://www.runoob.com/tags/tag-output.html)
 | 定义不同类型的输出,比如脚本的输出。 |

<p>
(http://www.runoob.com/tags/tag-p.html) 
| 定义段落。 |

<param>
(http://www.runoob.com/tags/tag-param.html) 
| 定义对象的参数。 |

<pre>
(http://www.runoob.com/tags/tag-pre.html)
 | 定义预格式文本。 |

<progress>
(http://www.runoob.com/tags/tag-progress.html)
| 定义运行中的进度(进程)。 |

<q>
(http://www.runoob.com/tags/tag-q.html)
 | 定义短的引用。 |

<rp>
(http://www.runoob.com/tags/tag-rp.html)
 | <rp> 标签在 ruby 注释中使用,以定义不支持 ruby 元素的浏览器所显示的内容。 |

<rt>
(http://www.runoob.com/tags/tag-rt.html)
| <rt> 标签定义字符(中文注音或字符)的解释或发音。 |

<ruby>
(http://www.runoob.com/tags/tag-ruby.html)
| <ruby> 标签定义 ruby 注释(中文注音或字符)。 |

<s>
(http://www.runoob.com/tags/tag-s.html) 
| 不赞成使用。定义加删除线的文本。 |

<samp>
(http://www.runoob.com/tags/tag-samp.html) 
| 定义计算机代码样本。 |

<script>
(http://www.runoob.com/tags/tag-script.html) 
| 定义客户端脚本。 |

<section>
(http://www.runoob.com/tags/tag-section.html)
| <section> 标签定义文档中的节(section、区段)。比如章节、页眉、页脚或文档中的其他部分。 |

<select>
(http://www.runoob.com/tags/tag-select.html)
 | 定义选择列表(下拉列表)。 |

<small>
(http://www.runoob.com/tags/tag-small.html)
 | 定义小号文本。 |

<source>
(http://www.runoob.com/tags/tag-source.html)
 | <source> 标签为媒介元素(比如 <video> 和 <audio>)定义媒介资源。 |

<span>
(http://www.runoob.com/tags/tag-span.html) 
| 定义文档中的节。 |

<strike>
(http://www.runoob.com/tags/tag-strike.html)
 | HTML5不支持,不赞成使用。定义加删除线文本。 |

<strong>
(http://www.runoob.com/tags/tag-strong.html) 
| 定义强调文本。 |

<style>
(http://www.runoob.com/tags/tag-style.html)
 | 定义文档的样式信息。 |

<sub>
(http://www.runoob.com/tags/tag-sub.html) 
| 定义下标文本。 |

<summary>
(http://www.runoob.com/tags/tag-summary.html)
| <summary> 标签包含 details 元素的标题,"details" 元素用于描述有关文档或文档片段的详细信息。 |

<sup>
(http://www.runoob.com/tags/tag-sup.html)
 | 定义上标文本。 |

<table>
(http://www.runoob.com/tags/tag-table.html) 
| 定义表格。 |

<tbody>
(http://www.runoob.com/tags/tag-tbody.html)
 | 定义表格中的主体内容。 |

<td>
(http://www.runoob.com/tags/tag-td.html) 
| 定义表格中的单元。 |

<textarea>
(http://www.runoob.com/tags/tag-textarea.html)
 | 定义多行的文本输入控件。 |

<tfoot>
(http://www.runoob.com/tags/tag-tfoot.html)
 | 定义表格中的表注内容(脚注)。 |

<th>
(http://www.runoob.com/tags/tag-th.html) 
| 定义表格中的表头单元格。 |

<thead>
(http://www.runoob.com/tags/tag-thead.html)
 | 定义表格中的表头内容。 |

<time>
(http://www.runoob.com/tags/tag-time.html)
 | 定义日期或时间,或者两者。 |

<title>
(http://www.runoob.com/tags/tag-title.html)
 | 定义文档的标题。 |

<tr>
(http://www.runoob.com/tags/tag-tr.html)
 | 定义表格中的行。 |

<track>
(http://www.runoob.com/tags/tag-track.html)
| <track> 标签为诸如 video 元素之类的媒介规定外部文本轨道。 |

<tt>
(http://www.runoob.com/tags/tag-tt.html)
 | 定义打字机文本。 |

<u>
(http://www.runoob.com/tags/tag-u.html) 
| 不赞成使用。定义下划线文本。 |

<ul>
(http://www.runoob.com/tags/tag-ul.html)
 | 定义无序列表。 |

<var>
(http://www.runoob.com/tags/tag-var.html) 
| 定义文本的变量部分。 |

<video>
(http://www.runoob.com/tags/tag-video.html)
 | <video> 标签定义视频,比如电影片段或其他视频流。 |

<wbr>
(http://www.runoob.com/tags/tag-wbr.html)
|规定在文本中的何处适合添加换行符。 |
Prev
2024-04-21 00:48:21
Next