This repository has been archived by the owner on Jul 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (59 loc) · 1.72 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Codyfight | Game Client</title>
<link rel="icon" type="image/png" href="https://codyfight.com/favicon.ico">
<style>
.src {
font-family: "Courier New", cursive;
}
.title {
text-align: center;
}
.container {
margin: 25px;
}
.footer {
text-align: center;
}
.separator {
margin: 30px 0 30px 0;
}
a {
color: #7288B3;
text-decoration: none;
outline: 0;
}
a:hover {
color: #1d68a7;
text-decoration: none;
outline: 0;
}
</style>
</head>
<body>
<div class="container">
<h2 class="title src">Codyfight Game Client</h2>
<hr class="separator"/>
<h3>Useful links</h3>
<ul>
<li>
Read <a href="https://codyfight.com/api-doc" target="_blank">API documentation</a>
</li>
<li>
Visit Codyfight <a href="https://github.com/codyfight/" target="_blank">GitHub</a> account
</li>
<li>
Check Codyfighter implementation <a href="https://github.com/codyfight/codyfighter-node.js" target="_blank">example</a> with node.js
</li>
</ul>
<hr class="separator"/>
<embed type="text/html" id="game-widget" src="" style="width:100%; height:100vh;"/>
<hr class="separator"/>
<div class="footer">
<label>© <a href="https://www.codyfight.com" target="_blank">Codyfight</a> - all rights reserved</label>
</div>
</div>
</body>
</html>