-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
82 lines (74 loc) · 2.45 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
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
<!doctype html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<title>CircuitGame</title>
<link rel="stylesheet" href="build/main.css" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
</head>
<body>
<div class="circuit-game-webpage">
<div class="title-section">
<div class="title">
Circuit Simulator
</div>
</div>
<div id="main-left" class="col-md-3 main">
<div id="control-panel">
<div id="legend" class="panel panel-success">
<div class="panel-heading">Legend</div>
<div class="panel-body">Try another map.</div>
<input id="start-button" type="button" value="Next Map" />
<table class="table">
<thead>
<tr>
<th>#</th>
<th>Icon</th>
<th>Gate</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td><img src="assets/OR.png" style="width:50px;height:50px;"></td>
<td>OR</td>
</tr>
<tr>
<th scope="row">2</th>
<td><img src="assets/AND.png" style="width:50px;height:50px;"></td>
<td>AND</td>
</tr>
<tr>
<th scope="row">3</th>
<td><img src="assets/NAND.png" style="width:50px;height:50px;"></td>
<td>NAND</td>
</tr>
<tr>
<th scope="row">4</th>
<td><img src="assets/NOR.png" style="width:50px;height:50px;"></td>
<td>NOR</td>
</tr>
<tr>
<th scope="row">5</th>
<td><img src="assets/XOR.png" style="width:50px;height:50px;"></td>
<td>XOR</td>
</tr>
<tr>
<th scope="row">6</th>
<td><img src="assets/XNOR.png" style="width:50px;height:50px;"></td>
<td>XNOR</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="col-md-6 main">
<div id="game-container"/>
</div>
<div id="main-right" class="col-md-3 main">
</div>
</div>
<script type="text/javascript" src="build/main.js" ></script>
</body>
</html>