-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
22 lines (21 loc) · 933 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<head>
<title>quilfiddle</title>
<link href='http://fonts.googleapis.com/css?family=Source+Code+Pro&subset=latin,latin-ext' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="resources/styles/quilfiddle.css" />
</head>
<body>
<div id="editor"></div>
<canvas id="canvas"></canvas>
<script src="out/goog/base.js" type="text/javascript"></script>
<script type="text/javascript" src="processing-1.4.8.js"></script>
<script type="text/javascript" src="out/main.js"></script>
<script>
goog.require('quilfiddle.core');
</script>
<link rel="stylesheet" type="text/css" href="resources/codemirror/lib/codemirror.css" />
<link rel="stylesheet" type="text/css" href="resources/codemirror/addon/hint/show-hint.css" />
<link rel="stylesheet" type="text/css" href="resources/codemirror/theme/paraiso-dark.css" />
</body>
</html>