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

HTML基础 --- HTML基础

时间:2019-07-04 00:14:35      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:The   指定   idt   fir   bsp   col   注释   定义   com   

一、HTML标题

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

实例

<h1>This is a First Heading</h1>
<h2>This is a Second Heading</h2>
<h3>This is a Third 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基础 --- HTML基础

标签:The   指定   idt   fir   bsp   col   注释   定义   com   

原文地址:https://www.cnblogs.com/Tomorrow-will-be-better/p/11129793.html

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