forked from aimacode/aima-javascript
- Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (46 loc) · 1.16 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
<!DOCTYPE html>
<htmllang="en">
<head>
<title>7 Logical Agents </title>
<linkrel="stylesheet" href="../styles.css">
<scriptsrc="http://code.jquery.com/jquery-1.12.4.js"></script>
<scriptsrc="https://d3js.org/d3.v4.min.js"></script>
<scripttype="text/javascript" src="../main.js"></script>
<scripttype="text/javascript" src="./logicalAgent.js"></script>
<scripttype="text/javascript" src="./c_logicalAgent.js"></script>
<scripttype="text/javascript" src="../third-party/mousetrap.min.js"></script>
<script>
$(function(){
$('header').load("../header.html");
});
</script>
<styletype="text/css">
#wumpus_world .info {
fill:#ddd;
}
#wumpus_worldrect.square {
fill:#ddd;
stroke-width:1px;
stroke: black;
}
#wumpus_worldcircle.player {
fill: green;
}
#wumpus_worldcircle.wumpus {
fill: red;
}
#wumpus_worldcircle.gold {
fill: gold;
}
</style>
</head>
<body>
<divclass="row">
<divclass="col-sm-6 col-md-offset-3" id="content">
<h1>Logical Agents</h1>
<h2>Wumpus World</h2>
<divid="wumpus_world"></div>
</div>
</div>
</body>
</html>