VSCode安装live server插件可以实时预览页面(右键Open with Live Server)
HTML
body中常用的标签
- 标题 h1 - h6 (heading)
- 章节 section
- 文章 article
- 段落 p (Paragraph)
- 头部 header
- 尾部 footer
- 主要内容 main
- 次要内容 aside
- 导航条 nav (Navigation)
- 层次分块 div (Division)
a 标签
<ul>
<li><a href="https://example.com">Website</a></li>
<li><a href="mailto:m.bluth@example.com">Email</a></li>
<li><a href="tel:+123456789">Phone</a></li>
<li><a href="https://example.com" download>Website</a></li>
<li><a href="https://example.com" target="_blank">Website</a></li>
<li><a href="https://example.com" title="show when hover">Website</a></li>
</ul>
table
<table>
<thead>
<tr>
<th colspan="2">The table header</th>
</tr>
</thead>
<tbody>
<tr>
<td>The table body</td>
<td>with two columns</td>
</tr>
</tbody>
</table>