-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (37 loc) · 1.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>chess</title>
<link rel="stylesheet" href="css/app.css">
</head>
<body>
<audio src="sound/shft.mp3" type="audio/mpeg" id="shft"></audio>
<audio src="sound/erase.mp3" type="audio/mpeg" id="erase"> </audio>
<div id="chessLayout">
<div id="navLayout">
<div id="login"><img src="svg/beach.jpg" alt="kyvsif">
<h2>Kyvsif</h2>
</div>
</div>
<div id="gridLayout">
<div id="header"></div>
<div id="mainLayout">
<div id="host"></div>
<div id="boardLayout">
<div id="gameAgainst">
<h2 id="playingAgainst">Steffen Holm</h2><img src="svg/flower.jpg" id="playingAgainstImage">
</div>
<div id="gameAgainstCurrentUser">
<h2>Kysif zyivtek</h2><img src="svg/beach.jpg">
</div>
</div>
<div id="graphLayout">
<button id="play">+ Play</button>
</div>
</div>
</div>
</div>
</body>
<script src="scripts/shogi.js" type="module"></script>
<script src="scripts/host/host.js" type="module"></script>
</html>