HTML的文件结构:<html>
<head>网页头部信息</head>
<body>网页主体正文部分</body>
</html>
HTML的基本标记:定义网页背景色——bgcolor
<body bgcolor=”背景颜色 ”>
设置背景图片——backgroung
<body background=”图片的地址 ”>
设置文字颜色——text
<body text=”文字的颜色 ”>
设置链接文字属性
<body link=”颜色 ”>
(使用alink可以设置鼠标单击超链接时的颜色
使用vlink可以设置已访问过的超链接颜色)
设置页面边距——margin
topmargin 设置顶边的距离
leftmargin 设置左边的距离
rightmargin 设置右边的距离
bottommargin 设置底边的距离
页面的头部元素<!DOCTYPE>和<head>
<!DOCTYPE>为浏览器提供的一项声明
<head>文档头部信息</head>
页面标题元素<title>
<title>…</title>(输入标题信息在浏览器上显示)
元信息元素<meta>
设置页面关键词
<meat name=”keywords ”content=”输入具体的关键词”>
设置页面主要内容
<meat name=”description ”content=”页面描述 ”>
定义页面的搜索方式
<meat name=”robots ”conten=”搜索方式 ”>
搜索方式取值:all 表示能搜索当前网页及其链接的网页
nofollow 搜索引擎不继续通过此网页的链接搜索其他的网页
follow 搜索引擎继续通过此网页的链接搜索其他的网页