-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (50 loc) · 1.22 KB
/
index.html
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
48
49
50
51
52
53
<!DOCTYPE html>
<html>
<head>
<title>Code Runner</title>
<script type="text/javascript" src="/dist/problems.js"></script>
<script type="text/javascript" src="/dist/bundle.js"></script>
<script src="https://use.fontawesome.com/c580d027b1.js"></script>
<link rel="stylesheet" type="text/css" href="/node_modules/codemirror/lib/codemirror.css">
<link rel="stylesheet" type="text/css" href="/styles/sakura.css">
<link rel="stylesheet" type="text/css" href="/styles/main.css">
</head>
<body>
<div id="wrapper">
<h1>
Learn JavaScript
</h1>
<hr /><br />
<nav>
<button>Toggle List</button>
<ol></ol>
</nav>
<div id="main" class="nav-open">
<div id="problem-info"></div>
<div id="code-editor"></div>
<div id="solutions-list">
</div>
<div>
<h3>
<button id="run" class="tooltip">
Run Code
▶
<span class="tooltiptext">Also run with "ctrl-enter"</span>
</button>
<span id="message"></span>
</h3>
</div>
<table id="test-results">
<thead>
<th>Call</th>
<th>Expected</th>
<th>Actual</th>
<th></th>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
</body>
</html>