<!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 http-equiv="Content-Type" content="text/html; charset=gb2312" /> <meta name="revised" content="David Yang,8/1/07"/> <meta name="author" content="w3school.com.cn"/> <!--本文档的 meta 属性标识了创作者和编辑软件。--> <meta name="generator" content="Dreamweaver 8.0en"/> <!--自定义关键词--> <meta name="keywords" content="HTML, DHTML, CSS, XML, XHTML, JavaScript, VBScript"/> <meta http-equiv="Refresh" content="5;url=http://www.cctv.com" /> <!---等待5秒钟然后就能跳转到cctv--> <title>无标题文档</title> </head> <body> <p> 对不起。我们已经搬家了。您的 URL 是 <a href="http://www.cctv.com">http://www.cctv.com</a> </p> <p>您将在 5 秒内被重定向到新的地址。</p> <p>如果超过 5 秒后您仍然看到本消息,请点击上面的链接。</p> </body> </html>
<!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> <!--以下标签都可以添加到 head 部分:<title>、<base>、<link>、<meta>、<script> 以及 <style>。--> <!--<base> 标签为页面上的所有链接规定默认地址或默认目标(target):--> <base href="http://www.w3school.com.cn/images/" /> <base target="_blank" /> <!--<link> 标签定义文档与外部资源之间的关系。--> <link rel="stylesheet" type="text/css" href="Untitled-1.css" /> <!--<style> 标签用于为 HTML 文档定义样式信息。--> <style type="text/css"> body {background-color:yellow} p {color:blue} </style> <!--<meta> 标签始终位于 head 元素中。 元数据可用于浏览器(如何显示内容或重新加载页面),搜索引擎(关键词),或其他 web 服务。--> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <!--下面的 meta 元素定义页面的描述:--> <meta name="description" content="Free Web tutorials on HTML, CSS, XML" /> <!--下面的 meta 元素定义页面的关键词:--> <meta name="keywords" content="HTML, CSS, XML" /> <!--title 标题--> <title>无标题文档</title> </head> <body> <p>这是是</p> <script type="text/javascript"> document.write("<h1>Hello World!</h1>") </script> <noscript>Sorry, your browser does not support JavaScript!</noscript> <p>不支持 JavaScript 的浏览器将显示 noscript 元素中的文本。</p> </body> </html>
时间: 2024-09-29 20:52:52