-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpractice-writing-javascript.html
More file actions
78 lines (69 loc) · 2.27 KB
/
Copy pathpractice-writing-javascript.html
File metadata and controls
78 lines (69 loc) · 2.27 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<title>Script Schule</title>
<meta name="description" content="Learn JavaScript from scratch or practice advanced JavaScript through repetition">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:title" content="Script Schule">
<meta property="og:type" content="website">
<meta property="og:url" content="https://script.schule">
<meta property="og:image" content="">
<link rel="manifest" href="site.webmanifest">
<link rel="apple-touch-icon" href="icon.png">
<!-- Place favicon.ico in the root directory -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/mvp.css">
<link rel="stylesheet" href="css/styles.css">
<meta name="theme-color" content="#fafafa">
</head>
<body>
<header>
<nav>
<a href="index.html">
Script<img alt="school backpack" src="img/schule-backpack.png" height="25">
</a>
<ul>
<li><a href="learn.html">Learn</a></li>
<li>
<a href="practice.html">Practice</a>
<ul>
<li>Building Memory</li>
<li>Solving Problems</li>
<li>Writing JavaScript</li>
</ul>
</li>
<li><a href="resources.html">Resources</a></li>
<li><a href="about.html">About</a></li>
</ul>
</nav>
</header>
<main>
<h1>Write JavaScript</h1>
<p>Follow along with the shadow teacher and you'll quickly start committing JavaScript to muscle memory.</p>
<h2>Question</h2>
<div id="questionBox"></div>
<h2>Your Answer<sup class="hidden" id="result"></sup></h2>
<textarea id="answerBox" cols="40" rows="5"></textarea>
<p>
</p>
<button id="previous">
Previous
</button>
<button id="next" onclick="checkAnswer();">
Submit Answer
</button>
</main>
<footer>
</footer>
<script src="js/vendor/modernizr-3.11.2.min.js"></script>
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>
<script>
var answerElement = document.getElementById('answerBox');
// var codeToLoad =
// answerElement.textContent =
</script>
</body>
</html>