用两天的时间将HTML学完,整理一下笔记。由于是在边学习时边记的笔记,只记录了自己不熟悉的。排版不是很规范,慢慢学习,一步一步来。
1.文件类型说明
2.HTML文件以开始,以结束。/表示标签结束。
3.,不显示在浏览器上,一般是属性的设置;
,要显示的文章内容
4.段落:
5.注释:
6.换行符:
,无结束标签
,增加一条横线
:元素中的文本以固定宽度的字体(通常是Courier)显示,并且它保留了空格和换行符。
例:
this is a heading
1.链接:,链接的目的地在href属性指定
this is a link
2.图片:img,源文件(src),替换文件(alt)(在无法显示时打开),宽度和高度
3.图片为链接:href为要链接到的地址,src为图片地址,alt为名称
lang="",语言
title,鼠标指到有显示
Attribute
|
Description
|
alt
|
Specifies an alternative text for an image, when the image cannot be displayed
|
disabled
|
Specifies that an input element should be disabled
|
href
|
Specifies the URL (web address) for a link
|
id
|
Specifies a unique id for an element
|
src
|
Specifies the URL (web address) for an image
|
style
|
Specifies an inline CSS style for an element
|
title
|
Specifies extra information about an element (displayed as a tool tip)
|
id="p01">I am different.
表中数据
|
增加边框
p {
border: 1px solid powderblue;
边框厚度 实线 颜色
padding: 30px;
边框宽度
}
|
---|