-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (25 loc) · 1.17 KB
/
index.html
File metadata and controls
26 lines (25 loc) · 1.17 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
<!DOCTYPE html>
<html lang="zh-CN">
<head><!-- 标题内容 -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>离语</title><!--网站标题-->
<!--link rel="icon" href="/path/to/your/favicon.ico" type="image/x-icon"--><!-- 引用网站图标 -->
<link rel="icon" href="head-iocn.jpg" type="image/jpg"><!-- 或者对于PNG图标,可以这样写 -->
<link rel="stylesheet" href="styles.css"><!-- 引入CSS样式,如果需要的话 -->
<script src="script.js" defer></script><!-- 引入JavaScript脚本,如果需要的话 -->
<link rel="stylesheet" href="styles.css"><!-- 引入展板CSS文件 -->
</head>
<body><!-- 这里是页面的主要内容 -->
<header>
<h1>欢迎!</h1><!-- 其他头部内容,如导航栏等 -->
</header>
<main><!-- 这里是页面的主体内容 -->
<a href="https://reference-bk9.pages.dev/">Quick Reference(编程快速清单手册)</a>
<p>此网站还在筹备中……</p>
</main>
<footer><!-- 页脚内容,如版权信息等 -->
<p>版权所有 © 2024-5-23 @li. All Rights Reserved.</p>
</footer>
</body>
</html>