mirror of
https://git.kittycat.homes/zoe/reversi.git
synced 2024-08-15 03:27:19 +00:00
23 lines
507 B
HTML
23 lines
507 B
HTML
<!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>
|