HTML文档基本结构_meta标签
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="keywords" content="网页设计,学网页" /> <meta name="description" content="如何学习网页设计,学习网页设计的方法,HTML中文手册" /> <meta name="author" content="传智播客" /> <meta http-equiv="refresh" content="2;url=http://www.baidu.com" /> <meta name="revised" content="html4.01"> <title>HTML文档基本结构_meta标签</title> </head> <body> meta标记用于定义文件信息,对网页进行说明,便于搜索引擎查找, </body> </html> <!-- meta标记用于定义文件信息,对网页进行说明,便于搜索引擎查找,要放置在<head> <head/>之间 设置关键字:(比较短,用于搜索引擎) <meta name="keywords" content="value"/> value表示要设置的关键字,多个关键字之间用,分隔开 设置描述:(用于对关键字进行扩展,或对网页的内容进行概述性的描述) <meta name="description" content="value"/> value表示要设置的描述,多个描述之间用,分隔开 设置作者: <mate name="author" content="作者名" />作者名一般都是公司名称 设置网页的编码: <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 设置页面定时跳转: <meta http-equiv="refresh" content="2;url=http://www.baidu.com" /> (content="2;url=http://www.baidu.com" 2表示该网页过多少秒跳转到url指定的目的地) 描述网页的版本: <meta name="revised" content="html4.01"> 可设置其他网页信息: <meta name="others" content="这个我第一个网站,网站的主要内容有动漫,音乐,文章,博客等等,欢迎大家光临!"> 描述网页是通过那种软件产生: <meta name="generator" content="记事本"> -->
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。