-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
54 lines (43 loc) · 1.37 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<html>
<head>
<title id="status">QChess Web UI</title>
<!--<link rel="stylesheet" href="css.css" />-->
<script type="text/javascript" src="jquery-1.10.1.min.js"></script>
<script type="text/javascript" src="js.js"></script>
<style>
div
{
position:relative;
width:600px;
height:800px;
text-align:center;
}
input
{
position:relative;
width:80px;
height:30px;
}
</style>
</head>
<body style="width: 100%">
<p id="welcome"> Press the button to start </p>
<div style="width:100%;">
<!-- Board and UI -->
<div>
<table style="margin-left: auto; margin-right: auto; font-size: 16" width=550px height=550px id="board" border=0 cellspacing=0 cellpadding=0></table>
<button id="start">New Game</button>
<p id="loglink"></p>
<p id="indexlink"> <a href="http://progcomp.ucc.asn.au/2013/web/">UCC::Progcomp 2013 - Schroedinger's Gambit</a> </p>
<p> <a href="http://research.cs.queensu.ca/Parallel/QuantumChess/QuantumChess.html">Quantum Chess</a> designed by Dr Selim Akl and Alice Wismath </p>
</div>
<!-- Message box
<div style="float:right;">
<h2>Messages</h2>
<input type="text" value="" id="messages" style="width:80%; height:80%;">
<input type="text" value="" id="say" style="width:60%;">
<button id="message" style="width:20%;">Send</button>
</div> -->
</div>
</body>
</html>