-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (59 loc) · 1.48 KB
/
index.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
66
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>B站标签导航</title>
<link rel="stylesheet" type="text/css" href="./css/reset.css">
<link rel="stylesheet" type="text/css" href="./css/index.css">
</head>
<body>
<header class="header">
头部
</header>
<main class="container">
<section id="yinyue">
音乐模块
</section>
<section id="guichu">
鬼畜区
</section>
<section id="dianying">
电影模块
</section>
<section id="xuexi">
学习区
</section>
<section id="shenghuo">
生活区
</section>
<section id="youxi">
游戏中心
</section>
<section id="shuma">
数码区
</section>
<section id="manhua">
漫画区
</section>
<section id="wudao">
舞蹈模块
</section>
<section id="fanju">
番剧频道
</section>
<section id="zhibo">
直播间
</section>
</main>
<footer class="footer">
底部
</footer>
<div class="navigation">
<ul class="list"></ul>
<a href="javascript:;" class="btn top-btn">TOP ↑</a>
</div>
<script src="./js/utils.js"></script>
<script src="./js/index.js"></script>
</body>
</html>