-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (30 loc) · 841 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TileTools</title>
<style>
body {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
a {
margin: 10px;
text-decoration: none;
font-size: 18px;
}
</style>
</head>
<body>
<h1>TileTools</h1>
<a href="./tools/splitter.html">Tileset Splitter</a>
<a href="./tools/generator.html">Tileset Generator</a>
<a href="./tools/editor.html">Tileset Editor</a>
<br><br><br><br><div>by<a href="https://github.com/jardimdanificado">@jardimdanificado</a></div>
</body>
</html>