标签:标题 定义 school 段落 html this 属性 内容 height
一、html基本架构
<html> 与 </html> 之间的文本描述网页
<body> 与 </body> 之间的文本是可见的页面内容
<h1> 与 </h1> 之间的文本被显示为标题
<p> 与 </p> 之间的文本被显示为段落
1、<h1> ~ <h6>用来定义标题的标签
2、<p>是用来定义段落的标签
3、<a>是用来定义链接的标签 在href属性中指定链接地址
<a href="http://www.w3school.com.cn">This is a link</a>
4、<img>是用来定义图像的标签 src属性指定图片地址和名称 图片尺寸也是以属性方式提供
<img src=“图片地址” width="100" height="100" />
标签:标题 定义 school 段落 html this 属性 内容 height
原文地址:https://www.cnblogs.com/avril-xiao/p/13204598.html