forked from aimacode/aima-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (26 loc) · 644 Bytes
/
Copy pathindex.html
File metadata and controls
34 lines (26 loc) · 644 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>19 Knowledge in Learning</title>
<script src="http://code.jquery.com/jquery-1.10.2.js"></script>
<script type="text/javascript" src="../main.js"></script>
<script>
$(function(){
$('header').load("../header.html");
});
</script>
</head>
<body>
<header>
</header>
<div class="row">
<div class="col-sm-6 col-md-offset-3" id="content">
<h1>Knowledge in Learning</h1>
<p>TODO</p>
</div>
</div>
<footer class="container-fluid text-center">
<img src="http://aima.cs.berkeley.edu/aima_logo.png"></img>
</footer>
</body>
</html>