forked from humanwhocodes/computer-science-in-javascript
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (27 loc) · 609 Bytes
/
Copy pathindex.html
File metadata and controls
30 lines (27 loc) · 609 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
<!DOCTYPE html>
<html>
<head>
<title>Playing with CS</title>
<style>
body {
background-color: #000000;
height: 100%;
}
#console {
font-family: courier;
color: #00dd00;
font-size: 10pt;
}
</style>
<script src="http://www.google.com/jsapi"></script>
<script>google.load("jquery", "1");</script>
<script src="util.js" type="text/javascript" charset="utf-8"></script>
<script>
$(document).ready(function() {
});
</script>
</head>
<body>
<div id="console">Hello</div>
</body>
</html>