码迷,mamicode.com
首页 > Web开发 > 详细

HTML

时间:2016-08-10 06:23:07      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:

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

标签:

原文地址:http://www.cnblogs.com/lilidun/p/5755194.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!