-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (30 loc) · 1.19 KB
/
Copy pathindex.html
File metadata and controls
31 lines (30 loc) · 1.19 KB
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">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Apanha o Rei</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
<link href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container" id="app">
<h2>Apanha o Rei</h2>
<p>Um clone do melhor minijogo do Metin2.</p>
<div id="game"></div>
<div class="footer">
<ul class="links">
<li><a href="https://github.com/wadeira/catch-the-king"><i class="fab fa-github"></i> GitHub</a></li>
<li><a href="https://wadeira.github.io/ctk-helper/"><i class="fas fa-hands-helping"></i> Helper</a></li>
</ul>
<p class="disclaimer">Esta aplicação não é afiliada da Webzen Ymir ou Metin2.</p>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.9.0/p5.min.js"></script>
<script src="catchtheking.js"></script>
<script src="sprite.js"></script>
<script src="sketch.js"></script>
</body>
</html>