亲自试一试 - 实例
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<meta http-equiv="Content-Language" content="zh-cn" />
<title>标题不会显示在文档区</title>
</head>
<body>
<p>这段文本会显示出来。</p>
</body>
</html>
<title> 标题定义文档的标题。
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<meta http-equiv="Content-Language" content="zh-cn" />
<base target="_blank" />
</head>
<body>
<p>
<a href="http://www.w3school.com.cn" target="_blank">这个连接</a> 将在新窗口中加载,因为 target 属性被设置为 "_blank"。
</p>
<p>
<a href="http://www.w3school.com.cn">这个连接</a> 也将在新窗口中加载,即使没有 target 属性。
</p>
</body>
</html>
如何使用 base 标签使页面中的所有标签在新窗口中打开。
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<meta name="author"
content="w3school.com.cn">
<meta name="revised"
content="David Yang,8/1/07">
<meta name="generator"
content="Dreamweaver 8.0en">
</head>
<body>
<p>本文档的 meta 属性标识了创作者和编辑软件。</p>
</body>
</html>
使用 <meta> 元素来描述文档。
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<meta name="description"
content="HTML examples">
<meta name="keywords"
content="HTML, DHTML, CSS, XML, XHTML, JavaScript, VBScript">
</head>
<body>
<p>本文档的 meta 属性描述了该文档和它的关键词。</p>
</body>
</html>
使用 <meta> 元素来定义文档的关键词。
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<meta http-equiv="Refresh" content="5;url=http://www.w3school.com.cn" />
</head>
<body>
<p>
对不起。我们已经搬家了。您的 URL 是 <a href="http://www.w3school.com.cn">http://www.w3school.com.cn</a>
</p>
<p>您将在 5 秒内被重定向到新的地址。</p>
<p>如果超过 5 秒后您仍然看到本消息,请点击上面的链接。</p>
</body>
</html>
如何把用户重定向到新的网址。
HTML<head>元素
<head>元素是所有头部元素的容器。<head>内的元素可包含脚本,指示浏览器在何处可以找到样式表,提供元信息,等等。以下标签都可以添加到head部分:<title>、<base>、<link>、<meta>、<script>以及<style>。
HTML<title>元素
<title>标签定义文档的标题。
title元素在所有HTML/XHTML文档中都是必需的。
title元素能够:
- 定义浏览器工具栏中的使用
- 提供页面被添加到收藏夹时显示的标题
- 显示在搜索引擎结果的页面标题
一个简化的HTML文档:
<!DOCTYPE html>
<html>
<head>
<title>Title of the document</title>
</head>
<body>
The content of the document......
</body>
</html>
HTML<base>元素
<base>标签为页面上的所有链接规定默认地址或默认目标(target):
<head>
<base href="http://www.w3school.com.cn/images/" />
<base target="_blank" />
</head>
HTML<link>元素
<link>标签定义文档与外部资源之间的关系。
<link>标签最常用于连接样式表:
<head>
<link rel="stylesheet" type="text/css" href="mystyle.css" />
</head>
HTML<style>元素
<style>标签用于为HTML文档定义样式信息。
您可以在style元素内规定HTML元素在浏览器中呈现的样式:
<head>
<style type="text/css">
body {background-color:yellow}
p {color:blue}
</style>
</head>
HTML<meta>元素
元数据(metadata)是关于数据的信息。
<meta>标签提供关于HTML文档的元数据。元数据不会显示在页面上,但是对于机器是可读的。
典型的情况,meta元素被用于规定页面的描述、关键词、文档的作者、最后修改时间以及其他元数据。
<meta>标签始终位于meta元素中。
元数据可用于浏览器(如何显示内容或重新加载页面),搜索引擎(关键词),或其他web服务。
针对搜索引擎的关键词
一些搜索引擎利用meta元素和name和content属性来索引您的页面。
下面meta元素定义页面的描述:
<meta name="description" content="Free Web tutorials on HTML, CSS, XML" />
下面的meta元素定义页面的关键词:
<meta name="keywords" content="HTML, CSS, XML" />
name和content属性的作用是描述页面的内容。
HTML<script>元素
<script>标签用于定义客户端脚本,比如JavaScript。
我们会在稍后的章节讲解script元素。
网友评论