基本的 HTML 标签 - 四个实例

HTML 标题

HTML 标题(Heading)是通过 <h1> - <h6> 等标签进行定义的,不同的标题大小不同

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

HTML 段落

HTML 段落是通过 <p> 标签进行定义的

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

HTML 链接

HTML 链接是通过 <a> 标签进行定义的

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

注释:在 href 属性中指定链接的地址

HTML 图像

HTML 图像是通过 <img> 标签进行定义的

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

猜你喜欢

转载自blog.csdn.net/FZUMRWANG/article/details/86583195
今日推荐