-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcartoon.html
60 lines (51 loc) · 1.79 KB
/
cartoon.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<!-- 调用css库 -->
<link href="Styles/main.css" rel="stylesheet">
<link href="Styles/cursor.css" rel="stylesheet">
<link href="Styles/cartoon.css" rel="stylesheet">
<!-- 调用js -->
<script src="Scripts/back-to-top.js" defer></script>
<script src="Scripts/animate.js" defer></script>
<link rel="shortcut icon" href="./img/favicon.ico" type="image/x-icon">
<!-- 网站小图标,href链接本地图片地址 -->
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>
<title>Meow~~</title>
</head>
<body>
<div id="container">
<!-- 页眉内容 -->
<header id="top">
<div class="head-title">
<p>魔猫的WebSite</p>
</div>
<div class="top-button" onclick="location.href='main.html';">
<p>Home</p>
</div>
<div class="top-button">
<p>Passage</p>
</div>
<div class="top-button" onclick="location.href='link.html';">
<p>Link</p>
</div>
<div class="top-button">
<p>Search</p>
</div>
</header>
<!-- 主体 -->
<p><button onclick="myMove()">单击我</button></p>
<div id="animate-box">
<div id="animate"></div>
</div>
<!-- 页脚内容 -->
<div class="foot">
<div class="content">
<a href="https://beian.miit.gov.cn/" title="工业和信息化部政务服务平台">苏ICP备2022042352号-1</a>
</div>
<div class="push"><!-- not put anything here --></div>
</div>
</div>
</body>
</html>