-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
86 lines (58 loc) · 2.86 KB
/
index.html
File metadata and controls
86 lines (58 loc) · 2.86 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html>
<head>
<link href="./resources/css/index.css" type="text/css" rel="stylesheet">
<title>Chezz</title>
</head>
<body>
<header>
<nav class="menu">
<ul>
<li>All Compositions</li> <li>Helpmates</li> <li>Selfmates</li> <li>Directmates</li> <li>Retrograde</li> <li>Endgame Studies</li>
</ul>
</nav>
</header>
<div class="photo">
<img src="./resources/images/ChessComp.JPG" alt="mainphoto" width="90%" height="80%">
</div>
<div class="motto">
<h1>Chezz</h1>
<h2>A website on chess compositions</h2>
</div>
<div class="puzzle">
</div>
<div class="center-photo">
<img src="./resources/images/Chessboard.png" alt="mainphoto" width="700px" height="700px">
</div>
<!--<script src="./resources/scripts/MouseCursor1.js"></script>-->
<div style = "text-align:center;">
<canvas onclick="FindCoor(event)" id="myCanvas" width="800" height="800" style="border:1px solid white; background-color: green;"></canvas>
</div>
<div style= "visibility: hidden;">
<img id="pawnpiece" width="200" height="200" src="resources/images/wP.png" alt="A Chess Pawn">
<img id="knightpiece" width="200" height="200" src="resources/images/wN.png" alt="A Chess Knight">
<img id="bishoppiece" width="200" height="200" src="resources/images/wB.png" alt="A Chess Bishop">
<img id="queenpiece" width="200" height="200" src="resources/images/wQ.png" alt="A Chess Queen">
<img id="kingpiece" width="200" height="200" src="resources/images/wK.png" alt="A Chess King">
<img id="rookpiece" width="200" height="200" src="resources/images/wR.png" alt="A Chess Rook">
</div>
<div style= "visibility: hidden;">
<img id="bpawnpiece" width="200" height="200" src="resources/images/bP.png" alt="A Chess Pawm">
<img id="bknightpiece" width="200" height="200" src="resources/images/bN.png" alt="A Chess Knight">
<img id="bbishoppiece" width="200" height="200" src="resources/images/bB.png" alt="A Chess Bishop">
<img id="bqueenpiece" width="200" height="200" src="resources/images/bQ.png" alt="A Chess Queen">
<img id="bkingpiece" width="200" height="200" src="resources/images/bK.png" alt="A Chess King">
<img id="brookpiece" width="200" height="200" src="resources/images/bR.png" alt="A Chess Rook">
</div>
<p id="demo"></p>
<p id="demo2"></p>
<p id="demo3"></p>
<p id="demo4"></p>
<p id="demo5"></p>
<p id="demo6"></p>
</script>
<script type="text/javascript" src="C:/_Git/Chezzcode/resources/js/MyJavaScript.js">
</script>
<script src="C:\_Git\Chezzcode\resources\js\Board.js" type="text/javascript"></script>
</body>
</html>