diff options
Diffstat (limited to 'index.html')
-rwxr-xr-x | index.html | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/index.html b/index.html new file mode 100755 index 0000000..0ac62a6 --- /dev/null +++ b/index.html @@ -0,0 +1,56 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <title>go</title> + <link rel="stylesheet" href="style.css"> + <link rel="icon" type="image/x-icon" href="assets/icon.jpg"> +</head> +<body> + +<!-- +<div class="player player-left"> + 15 +</div> + +<div class="player player-right"> + 30 +</div> +--> + +<div id="head"> + +<div class="player-label-left"> + 30 +</div> +<div class="player-label-right"> + 30 +</div> + +<img class="player-image-left" src="assets/black.png" alt=""> +<img class="player-image-right" src="assets/white.png" alt=""> + +<!-- +<div class="turn"> + +<div class="border"> +<div class="inner"> +<h2>62 - 42</h2> +</div> +</div> + +</div> +--> + +</div> + + +<div id="board"> +</div> + + +<script type="module" src="src/index.js"></script> +</body> + +</html> |