基本的 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" />
释:图像的名称和尺寸是以属性的形式提供的。
持续关注,想学习html教程{:3_52:}
页:
[1]