-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (35 loc) · 979 Bytes
/
index.html
File metadata and controls
36 lines (35 loc) · 979 Bytes
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
30
31
32
33
34
35
36
<!-------------------------
******************************
Cjhdevact Github 主页 - 首页(跳转)
名称:index.html
作者:CJH
历史:
CJH 编辑于 2023-10-4
CJH 编辑于 2024-7-18
版权所有 © CJH。
******************************
--------------------------->
<!DOCTYPE html>
<html lang="zh-cn">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cjhdevact Github 主页</title>
<link rel='Shortcut Icon' type='image/x-icon' href='./Assets/logo.png'>
<link rel="icon" href="./Assets/logo.png">
<style>
body {
background-color:rgb(249,249,249);
}
@media (prefers-color-scheme: dark) {
body {
background-color: rgb(40,40,40);
}
}
</style>
<script>
window.location.href="./index.light.html";
</script>
</body>
</html>