-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (24 loc) · 801 Bytes
/
index.html
File metadata and controls
28 lines (24 loc) · 801 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Page Title</title>
<link rel="stylesheet" href="style.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js" type="text/javascript"></script>
</head>
<body>
<header><h1 id="mytitle"> My Coffee bot!!</h1>
<a href="#" id = "thetitle">Welcome to some canvas sandbox!</a>
</header>
<canvas id = "main", height="500px", width="500px">
hi
</canvas>
<script type="text/coffeescript">
$("a").click () ->
console.log "heard a click in embedded coffeescript"
</script>
<script src="app.coffee" type="text/coffeescript"></script>
<script src="application.js" type="text/javascript"></script>
<script src="coffee-script.js" type="text/javascript"></script>
</body>
</html>