-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·37 lines (35 loc) · 1000 Bytes
/
Copy pathindex.html
File metadata and controls
executable file
·37 lines (35 loc) · 1000 Bytes
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
<html>
<head>
<title>ReactJS Chess</title>
<meta charset="utf-8" />
<link rel="stylesheet" href="css/style.css" />
<link rel="shortcut icon" href="./images/favicon.png" />
<link
href="https://fonts.googleapis.com/css?family=Raleway&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div id="root"></div>
<script
data-href="https://github.com/arpansahoo/reactjs-chess"
data-target="_blank"
src="https://unpkg.com/github-corners/dist/embed.min.js"
></script>
<style>
.github-corner > svg {
fill: #77e1d7;
}
</style>
<script
crossorigin
src="https://unpkg.com/react@16/umd/react.production.min.js"
></script>
<script
crossorigin
src="https://unpkg.com/react-dom@16/umd/react-dom.production.min.js"
></script>
<script src="https://unpkg.com/@babel/standalone/babel.min.js"></script>
<script type="text/babel" src="js/chess.js"></script>
</body>
</html>