标签:
HTML标题
HTML标题(Heading)是通过<h1> - <h6>等标签来进行定义的
<h1>This is My Heading</h1> <h2>This is My Heading</h2> <h3>This is My Heading</h3> <h4>This is My Heading</h4>
HTML段落
HTML段落是通过<p>标签进行定义的
<p>This is My Heading</p> <p>This is My Heading</p> <p>This is My Heading</p> <p>This is My Heading</p>
HTML链接
HTML链接通过<a>标签定义
<a href="http://www.baidu.com">这是一个百度</a>
在href属性中指定链接的地址
HTML图像
HTML图像是通过<img>标签进行定义的
<img src="o.jpg" width="300" height="120" />
标签:
原文地址:http://www.cnblogs.com/changzuidaerguai/p/5625480.html