-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (39 loc) · 1.61 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="apple-touch-icon" sizes="180x180" href="favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon/favicon-16x16.png">
<link rel="manifest" href="favicon/site.webmanifest">
<link rel="mask-icon" href="favicon/safari-pinned-tab.svg" color="#faebd7">
<meta name="description" content="A web chess board game">
<meta name="keywords" content="Chess, Chess Web, Web Chess">
<meta name="author" content="Léo Freitas">
<meta name="msapplication-TileColor" content="#faebd7">
<meta name="theme-color" content="#faebd7">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Chess</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css">
<link rel="stylesheet" href="style.css"/>
</head>
<body>
<section class="section is-small"></section>
<div class="container is-fullhd">
<div id="gameboard"></div>
<p>It is <span id="player"></span>'s go.</p>
<p id="info-display"></p>
</div>
<footer class="footer">
<div class="content has-text-centered">
<p>
<strong>Chess</strong> by <a href="https://www.instagram.com/leonardo.freiitas/" target="_blank">Léo
Freitas</a>. The source code is licensed
<a href="https://github.com/Leo3965/chess-web" target="_blank">MIT</a>.
</p>
</div>
</footer>
<script src="pieces.js"></script>
<script src="app.js"></script>
</body>
</html>