HTML(HyperText Markup Language)超文本标记语言
FIRST_SETP
文档结构
< html\>…</html> 表示网页的开始和结束
<head\>…</head> 网页文件的头部信息:标题、搜索引擎关键字
<body\>…</body> 网站主体
title 表示网页顶端的网页标题
meta标记
用于定义文件信息,置于head 和 /head之间
<meta name=”keywords” content=”value”>
表示关键字
<meta name=”description” content=”value”>
描述网页的内容,是上面keywords的扩展
<meta name=”autor” content=”作者名”>
<meta http-equiv=”content-type” content=”text/html;charset=gb2312”>
国内网站用GB2312,国际用utf-8
text/html;charset=gb2312一个声明代码,指明这个是文本方式的网页文件,语言是 中文
<meta http-equiv=”refresh” content=”2;URL=http://www.baidu.com“/>
自动刷新 ,2表示时间
http-equiv中的属性:
content-type 规定文档的字符编码。
default-style 规定要使用的预定义的样式表?
refresh 定义文档自动刷新的时间间隔。
body
注释:<!–注释–>
html元素-html标签-html标记
不推荐使用:
bgcolor 背景颜色
background 背景照片
text 文字颜色
leftmargin 左边距
rightmargin 右边距
topmargin 上边距
bottommargin 下边距
<!--加背景图片会出现重复-->
<html>
<head>
<title>网页标题</title>
<meta name="keywords" content=""/>
<meta name="description" content=""/>
<meta http-equiv="content-type" content="type/html;charset-htf-8"/>
</head>
<body background='1.png' bgcolor='black' background text='white'
leftmargin="0"
rightmargin="0"
topmargin="0"
bottommargin='0'
>
<p>This is a pharagraph</p>
</body>
</html>
Tips
标记的属性:<标记 属性1=参数1属性2=参数2 。。。>内容</标记>
属性之间用空格分隔,属性不分先后且不是必须的。
html不区分大小写,xhtml全部小写
属性和属性之间用空格隔开
所有的标记都要关闭
<b>加粗
<font color=”red” size=”7”>内容 </font>
size(1~7)<hr width=”50%” /> 水平线