mirror of
https://git.kittycat.homes/zoe/reversi.git
synced 2024-08-15 03:27:19 +00:00
basic things, get the server to run, start working on rooms
This commit is contained in:
parent
f86e4bb9e1
commit
58303b3769
11 changed files with 4923 additions and 2 deletions
23
static/index.html
Normal file
23
static/index.html
Normal file
|
@ -0,0 +1,23 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<link
|
||||
rel="stylesheet"
|
||||
type="text/css"
|
||||
href="static/style.css"
|
||||
media="all"
|
||||
/>
|
||||
<script src="/script.js" charset="utf-8" defer></script>
|
||||
<title>Reversi Online</title>
|
||||
<meta
|
||||
charset="utf-8"
|
||||
name="viewport"
|
||||
content="width=device-width, initial-scale=1"
|
||||
/>
|
||||
<link rel="icon" type="image/x-icon" href="./static/think.svg" />
|
||||
</head>
|
||||
</html>
|
||||
<body>
|
||||
<div id="board"></div>
|
||||
</body>
|
Loading…
Add table
Add a link
Reference in a new issue