-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (56 loc) · 2.02 KB
/
index.html
File metadata and controls
65 lines (56 loc) · 2.02 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
<!doctype html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css"></link>
<link rel="stylesheet" type="text/css" href="css/styles.css"></link>
<title>8 Queens</title>
</head>
<body>
<div class="containter">
<div class="row">
<div class="col-sm-offset-1 col-xs-12 col-sm-8 col-lg-5">
<svg style="width:600px;height:600px;"/>
</div>
<div class="col-xs-12 col-sm-2 col-lg-5 panel panel-default">
<div class="panel-header">
<h4>8 Queens in Action</h4>
</div>
<div class = "panel-body">
<div class = "row">
<div class="col-xs-6 col-md-offset-1 col-md-3">
<label for "numSqrs">size of board:</label>
<select class="form-control" id="numSqrs">
<!--selections go here -->
</select>
</div>
</div>
<div class = "row">
<div class="col-xs-6 col-md-offset-1 col-md-3">
<div class="btn-group" data-toggle="buttons">
<label class="btn btn-info" id="stopButton">
<input type = "radio" name = "stopPlay"><span class="glyphicon glyphicon-stop"></span>
</label>
<label class="btn btn-info" id="playButton">
<input type = "radio" name = "stopPlay"><span class="glyphicon glyphicon-play"></span>
</label>
</div>
</div>
</div>
<div class = "row">
<div class="col-xs-6 col-md-offset-1 col-md-3">
<button type="button" class="btn btm-default" id="slowerButton">slower</button>
<button type="button" class="btn btm-default" id="fasterButton">faster</button>
<button type="button" class="btn btm-default" id="resSpdButton">reset speed</button>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src = "js/d3.min.js" type="text/JavaScript"></script>
<script src = "js/interface.js" type="text/JavaScript"></script>
<script src = "js/queens.js" type="text/JavaScript"></script>
</body>
</html>