-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathassessment.html
More file actions
29 lines (25 loc) · 952 Bytes
/
assessment.html
File metadata and controls
29 lines (25 loc) · 952 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>JS Assessment</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jasmine/2.3.4/jasmine.css" />
<style type="text/css">
h1 {
font-family:monospace;
}
</style>
</head>
<body>
<h1>Second JavaScript Basics Assessment</h1>
<p>See README.md for exercise directions</p>
<!-- jasmine (The test runner) -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jasmine/2.3.4/jasmine.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jasmine/2.3.4/jasmine-html.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jasmine/2.3.4/boot.js"></script>
<!-- automated tests (the test file) -->
<script src="./tests.js" type="text/javascript"></script>
<!-- custom js (your solutions to the assessment questions) -->
<script src="./solutions.js" type="text/javascript" ></script>
</body>
</html>