-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (37 loc) · 1.41 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
<!DOCTYPE html>
<head>
<!--
src里面是静态资源 th:href里面是启动springboot后引用的资源
-->
<meta charset="UTF-8">
<title>Bedrock Calculator</title>
<link rel="stylesheet" href="./Semantic/semantic.min.css" />
<link rel="stylesheet" href="./css/main.css" />
<script src="js/jquery-3.3.1.js"></script>
<script src="Semantic/semantic.min.js"></script>
<script src="js/index.js"></script>
</head>
<body>
<div class="mc-title">
<h1 class="ui center aligned header">
MCBE Calculator
</h1>
</div>
<div class="mc-content">
<div class="ui grid">
<div class="sixteen wide centered column">
<button class="ui primary basic fluid button" id="rng-btn">单方块随机刻计算器</button>
</div>
<div class="sixteen wide centered column">
<button class="ui primary basic fluid button" id="rng-btn">多单方块随机刻计算器(开发中)</button>
</div>
<div class="sixteen wide centered column">
<button class="ui primary basic fluid button" id="spawn-btn">生物生成计算器</button>
</div>
<div class="sixteen wide centered column">
<button class="ui primary basic fluid button" id="village-btn">单村庄可视化</button>
</div>
</div>
</div>
</body>
</html>