<!--
fieldset标签:
u标签:文本下划线
del标签:文本删除线
abbr标签:文本缩写标签
mark标签:文本标记
button标签:button普通按钮,submit表单提交按钮,reset表单重置按钮
details标签:伸缩文本
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>标签补充</title>
</head>
<body>
<fieldset>
<legend>hello html</legend>
<h1>hello world</h1>
<p>hello</p>
<hr >
</fieldset>
<u>hello html</u>
<del>hello html</del>
<abbr title="Hyper Text Markup Language">HTML</abbr>
<mark>hello html</mark>
<input type="button" value="这是一个按钮">
<button type="button">这也是一个按钮</button>
<button type="submit">这是一个提交按钮</button>
<button type="reset">这是一个重置按钮</button>
<details>
<summary>HTML</summary>
<p>html是超文本标记语言,Hyper Text Markup Language。</p>
<hr>
<ul>
<li>001</li>
<li>002</li>
<li>003</li>
</ul>
</details>
</body>
</html>