-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
33 lines (30 loc) · 1.22 KB
/
about.html
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
<!DOCTYPE html>
<html lang="zh-cn">
<head>
<meta charset="utf-8" name="referrer" content="no-referrer">
<link rel="icon" href="image/pant.ico" />
<link rel="stylesheet" type="text/css" href="myStyle.css">
<link rel="stylesheet" type="text/css" href="dark-mode.css">
<script src="myScript.js"></script>
<title>AidenProbe的博客</title>
</head>
<header id="header"> <!--header只是block的名字,实质得用id定义。所谓header指的应该是标题加上导航栏的吧...?-->
<a id="blogTitle" href="myBlog.html">Aiden. <span id="RyukoRed">T</span>的博客</a>
<div id="modeSet">
<button type="button" id="modeSwitchButton" onclick="modeswitch()"><strong>Dark</strong></button>
</div>
<div>
<p id="blogDescription">先解决有没有</p>
</div>
<nav id="nav-menu" class="clearfix" role="navigation">
<a class="current" href="myBlog.html">首页</a> <!--首页是按投稿时间倒序的-->
<a href="bullshit.html" title="批话">批话</a>
<a href="nonsense.html" title="歪理">歪理</a>
<a href="about.html" title="关于本博客">关于本博客</a>
</nav>
</header>
<body>
<div class="container">
</div>
</body>
</html>