-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (36 loc) · 1.37 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="description" content="Your description goes here">
<meta name="keywords" content="one, two, three">
<title>Karsy's Codewars Solutions</title>
<!-- external CSS link -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<h1>Karsy's Codewars JS Training</h1>
<nav>
<label for="solutions">Training Challenge</label>
<select name="solutions" id="solutions">
<!-- <option id="default" value="Default">Choose a challenge from the list</option> -->
</select>
</nav>
<main>
<section class="cont-1">
<h2>The Challenge</h2>
<pre><code id="descriptGoesHere">This is where you'll see the Code Challenge Description</code></pre>
<h2>The Code</h2>
<pre><code id="codeGoesHere">This is where you'll see the code.</code></pre>
<button id="runCodebutton">Run Code</button>
</section>
</main>
<script type="text/javascript" src="js/main.js"></script>
<script type="text/javascript" src="js/challengeData.js"></script>
<script type="text/javascript" src="js/7kyu/sumOfSequence.js"></script>
<script type="text/javascript" src="js/8kyu/squareNSum.js"></script>
<!-- <script type="text/javascript" src="js/5kyu/humanReadableTime.js"></script> -->
</body>
</html>
<!-- Karsyz -->