-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathindex.html
36 lines (30 loc) · 1.2 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CodingJS</title>
<link href="https://fonts.googleapis.com/css?family=Trirong" rel="stylesheet">
<link rel="stylesheet" href="css/style.css" media="screen">
<link rel="stylesheet" type="text/css" href="css/codemirror.css">
</head>
<body>
<div class="main">
<p class="heading"><img src="img/favicon-96x96.png" width="32px" /> <b>CodingJS</b></p>
<p class="subheading">Solve programming problems in Javascript or TypeScript!<br/>
<em>This site will only store your progress within your current web browser.<br>
To keep your solutions permanently, be sure to save your solution as a file.</em>
</p>
<div id="topButtonContainer">
<button class="btn-top" id="saveAll">Save All Solutions</button>
<button class="btn-top" id="loadAll">Load Saved Solutions</button>
<input type="file" id="fileInput" style="display:none;">
</div>
<div id="exerciseIndex">
</div>
</div>
<footer>
<em>Adapted by the-winter and contributors, based on Nick Parlante's <a class="links"href="http://codingbat.com/">CodingBat</a>.</em>
</footer>
</body>
<script src="dist/bundle.js"></script>
</html>