欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Document Head

程序员文章站 2022-03-18 19:47:51
...

                                Document Head


网页中头部标记是成对的<head></head>组成。

   <meta charset="utf-8" />

 <meta name="keywords" content="关键字" />

<meta http-equiv="refresh" content="1" />

<meta http-equiv="expire" content="60" />

  • 基底网址

<base>为页面上的所有链接规定默认地址或默认目标。<base href="http://www.baidu.com" target="_blank">

在网页中设置网页的标题,只要在HTML文件的头部文件的<title></title>中输入标题信息就可以在浏览器的上显示。

<!doctype html>
<html>
<head>
    <meta charset="utf-8" />
    <meta name="keywords" content="关键字" />
    <meta http-equiv="refresh" content="1" />
    <base href="http://www.baidu.com" target="_blank">
    <title>网页标题</title>
</head>
<body>
    .......
    .......
</body>
</html>