-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlist.html
65 lines (55 loc) · 1.54 KB
/
list.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
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
<!DOCTYPE html>
<html lang="ch">
<head>
<title id="PageTitle"></title>
<link rel="stylesheet" href="./styles.css">
<link rel="icon" href="./assets/icon.png" type="image/png">
<script src="./script.js"></script>
<style>
.bg{
width: 90%;
height: 100%;
}
</style>
</head>
<body>
<div style="display: flex;margin: 20px;width: 200px;height: 100vh;"></div>
<div id="sidebar">
<a class="button" href="list.html" id="listtitle">
<h2>目录</h2>
</a>
<ul>
<li>
<a class="button" href="list.html">
<h4>章节</h4>
</a>
</li>
<li>
<a class="button" href="main0.html">
<h5>序章</h5>
</a>
</li>
<li>
<a class="button" href="main1.html">
<h5>第一章</h5>
</a>
</li>
<li>
<a class="button" href="main1.5.html">
<h5>过渡诗</h5>
</a>
</li>
<li>
<a class="button" href="main2.html">
<h5>第二章</h5>
</a>
</li>
</ul>
</div>
<div id="container">
<div class="content" style="text-align: center">
<img src="./assets/Background.jpg" alt="background" class="bg">
</div>
</div>
</body>
</html>