-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmeta.html
More file actions
29 lines (25 loc) · 1.07 KB
/
meta.html
File metadata and controls
29 lines (25 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!--
* @由于个人水平有限, 难免有些错误, 还请指点:
* @Author: cpu_code
* @Date: 2020-08-11 11:53:24
* @LastEditTime: 2020-08-28 14:53:13
* @FilePath: \web\meta\meta.html
* @Gitee: [https://gitee.com/cpu_code](https://gitee.com/cpu_code)
* @Github: [https://github.com/CPU-Code](https://github.com/CPU-Code)
* @CSDN: [https://blog.csdn.net/qq_44226094](https://blog.csdn.net/qq_44226094)
* @Gitbook: [https://923992029.gitbook.io/cpucode/](https://923992029.gitbook.io/cpucode/)
-->
<html>
<head>
<!-- 声明网页标题 -->
<title> meta </title>
<!-- 位于文档的头部 , 永远位于 head 元素内部, 没有结束标签-->
<!-- 属性定义了与文档相关联的名称/值对 -->
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta http-equiv="refresh" content="3; url = http://www.google.com/" />
<!--meta name="keywords" content="google"-->
</head>
<body>
3秒后我们将去一个神奇的地方!(这个网页的关键字是:google)
</body>
</html>