基本的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.baidu.com">This is a link</a>
注释:在href属性中指定链接的地址。
HTML图像
HTML图像是通过<img>标签定义的。
实例
<img src="w3school.jpg" width="104" height="142" />
注释:图像的名称和尺寸以属性的形式提供。
网友评论