<!-->: HTML註釋,
註釋不會在瀏覽器中顯示
html
<!DOCTYPE>: <!DOCTYPE> 聲明必須是 HTML 文檔的第一行,位於 <html> 標籤以前
web
<!DOCTYPE> 聲明不是 HTML 標籤;它是指示 web 瀏覽器關於頁面使用哪一個 HTML 版本進行編寫的指令
canvas
在 HTML 4.01 中,<!DOCTYPE> 聲明引用 DTD,由於 HTML 4.01 基於 SGML。DTD 規定了標記語言的規則,這樣瀏覽器才能正確地呈現內容。HTML5 不基於 SGML,因此不須要引用 DTD
瀏覽器
提示:請始終向 HTML 文檔添加 <!DOCTYPE> 聲明,這樣瀏覽器才能獲知文檔類型
經常使用的標籤ruby
<div><span><a><img><label><p><button>
<mark>
<progress>
<time>
<em><strong>
<canvas>
<iframe>
<embed>
<video>ide
<br><hr>
<b><i>ui
<!DOCTYPE>
<html>
<head>
<title></title>
<meta>
<link>
<script></script>
<style></style>
</head>
<body>
<header>
<h1> - <h6>
<nav></nav>
</header>
<main>
<article>
<aside></aside>
</article>
<details>
<summary></summary>
</details>
</main>
<section></section>
<footer></footer>
</body>
</html>spa
<ul>
<li></li>
</ul>code
<ol>
<li></li>
</ol>orm
<dl>
<dt></dt>
<dd></dd>
</dl>
<form>
<fieldset>
<legend></legend>
<input>
<select>
<optgroup>
<option></option>
</optgroup>
</select>
<textarea></textarea>
</fieldset>
</form>
<table>
<caption></caption>
<thead>
<tr>
<th></th>
</tr>
</thead>
<tbody>
<tr>
<td></td>
</tr>
</tbody>
<tfoot></tfoot>
</table>
<audio>
<source></source>
</audio>
<figure>
<figcaption></figcaption>
</figure>
用到特定情景下的標籤
<address>
<area>
<blockquote>
<datalist>
<map>
<q>
<sub>
<sup>
用到特別少的標籤
<base>
<cite>
<code>
<del>
<dfn>
<dialog>
<ins>
<kbd>
<keygen>
<meter>
<noscript>
<object>
<output>
<param>
<pre>
<small>
<track>
<var>
<wbr>
不會用到的標籤
<bdi><bdo><col><colgroup><command><menu><menuitem><rp><rt><ruby><s><samp>