forked from shadeed/headers-css
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
113 lines (102 loc) · 4.28 KB
/
index.html
File metadata and controls
113 lines (102 loc) · 4.28 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8" />
<title>知识全栈-www.zsuuu.com</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="styles/reset.min.css" />
<link rel="stylesheet" href="styles/style.css" />
<link rel="stylesheet" href="styles/home.css" />
<link rel="icon" type="image/x-icon" href="img/header-icon.svg">
<script>
function updateTime() {
var now = new Date();
var timeString = now.toLocaleTimeString();
document.getElementById("currentTime").textContent = timeString;
}
// 页面加载后更新一次时间,并每秒钟更新一次
window.onload = updateTime;
setInterval(updateTime, 1000);
</script>
</head>
<body>
<header>
<img role="presentation" src="img/header-icon.svg" alt="" />
<h1><strong>知识全栈</strong></h1>
<p><strong>www.zsuuu.com</strong></p>
<div class="container">
<p id="currentTime">QAQ</p>
</div>
<canvas id="myCanvas" width="361" height="31"></canvas>
<script src="script.js"></script>
</header>
<section>
<div class="wrapper content">
<h2>💊 意识形态 💊</h2>
<p>
🍼
齐泽克在谈到意识形态的时候分享了一个小故事:获得过诺贝尔物理学奖的尼尔斯·玻尔在哥本哈根有一套房子,他在门口挂了一个马头来驱逐邪灵,有朋友问他真的相信这马头可以驱邪吗?他回答:「<strong>当然不信,我是个科学家。但是不管你信不信,这个的确有用。</strong>」齐泽克说,这就是根本意义上现在的意识形态。
</p>
</div>
</section>
<section>
<div class="wrapper content">
<h2>🚦 蓝色导标旗 🚦</h2>
<h3>✈️ 记录有趣的事情</h3>
<ul class="demo">
<li><a href="http://101.133.132.75:20418/">日记本</a></li>
<li><a href="http://101.133.132.75:20419/">白色相簿</a></li>
</ul>
<h3>✈️ Screeps: 自制或收集的工具</h3>
<ul class="demo">
<li><a href="https://screeps-cn.github.io/api/">Screeps文档api</a></li>
<li><a href="http://101.133.132.75:911">Shard核弹监视</a></li>
<li><a
href="http://api-screeps.mofengfeng.com/api/portals/find_route?from=shard0_W1N1&to=shard3_W2N2">星门寻路,超时空军团</a>
</li>
<li><a href="header-1.html">安卓版Screeps下载</a></li>
</ul>
<h3>✈️ 无尽任务: 放置游戏</h3>
<ul class="demo">
<li><a href="http://101.133.132.75:11111/">无尽任务</a></li>
</ul>
<h3>✈️ 工具箱</h3>
<ul class="demo">
<li><a href="http://101.133.132.75:9959/">可道云</a></li>
<li><a href=" http://101.133.132.75:20423/">PDF工具</a></li>
<li><a href=" http://101.133.132.75:20420/">体能计算器</a></li>
<li><a href="http://101.133.132.75:9960/">测试项目</a></li>
</ul>
<!-- <li><a href="header-1.html">Header 1</a></li>
<li><a href="header-2.html">Header 2</a></li>
<li><a href="header-3.html">Header 3</a></li>
<li><a href="header-4.html">Header 4</a></li>
<li><a href="header-5.html">Header 5</a></li>
<li><a href="header-6.html">Header 6</a></li>
<li><a href="header-7.html">Header 7</a></li>
<li><a href="header-8.html">Header 8</a></li>
<li><a href="header-9.html">Header 9</a></li>
<li><a href="header-10.html">Header 10</a></li>
<li><a href="header-11.html">Header 11</a></li>
<li><a href="header-12.html">Header 12</a></li>
<li><a href="header-13.html">Header 13</a></li>
<li><a href="header-14.html">Header 14</a></li>
<li><a href="header-15.html">Header 15</a></li>
<li><a href="header-16.html">Header 16</a></li>
<li><a href="header-17.html">Header 17</a></li> -->
</div>
</section>
<footer>
<div class="wrapper">
<div class="author">
<div class="author-meta">
<div id='beian'>
Copyright © 1993-2024 知识全栈 备案号:<a href="https://beian.miit.gov.cn/" rel="noopener noreferrer"
target="_blank">湘ICP备2020021251号</a>
</div>
</div>
</div>
</div>
</footer>
</body>
</html>