HTML 语法速查表

2020-01-12 web html cheatsheet

页面元素

标题 Heading

<h1><h6>

<h1>This is a heading</h1>
<h2>This is a heading</h2>
<h3>This is a heading</h3>

段落 Paragraph

<p>This is a paragraph.</p>
<p>This is another paragraph.</p

链接

<a href="http://www.w3school.com.cn">This is a link</a>

图片

<img src="w3school.jpg" width="104" height="142" />