forked from CodeGuild-co/PythonEditor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsimulator.html
More file actions
47 lines (39 loc) · 1.81 KB
/
simulator.html
File metadata and controls
47 lines (39 loc) · 1.81 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="description" content="Write, run, debug and share python code in your browser" />
<meta name="author" content="pddring">
<title>Create with code</title>
<link rel="stylesheet" href="lib/cm/codemirror.css">
<link rel="stylesheet" href="lib/cm/cobalt.css">
<link rel="stylesheet" href="lib/cm/blackboard.css">
<link rel="stylesheet" href="styles.css">
<link href='https://fonts.googleapis.com/css?family=Quicksand' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/themes/smoothness/jquery-ui.css">
<!-- See http://blog.withcode.uk/about/license-and-acknowledgements/ for libraries used-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.2/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js"></script>
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script src="lib/cm/codemirror.js"></script>
<script src="lib/cm/active-line.js"></script>
<script src="lib/cm/python.js"></script>
<script src="lib/lib.js"></script>
<script src="lib/skulpt/skulpt.min.js"></script>
<script src="lib/skulpt/skulpt-stdlib.js"></script>
<script src="lib/jq/jquery.ui.touch-punch.min.js"></script>
</head>
<body>
<div id="output"></div>
<script>
var toolsVisible = false;
// load python IDE
$(function() {
PythonIDE.init();
PythonIDE.runCode("normal");
});
</script>
</body>
</html>