-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (36 loc) · 1.45 KB
/
index.html
File metadata and controls
39 lines (36 loc) · 1.45 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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>CodeWorks GumShoe Training - JS Testing Grounds</title>
<link rel="stylesheet" href="https://unpkg.com/mocha/mocha.css" />
<link rel="stylesheet" href="assets/style.css">
</head>
<body>
<section class="back">
<a href="/" style="display: flex; align-items: center">
<img src="https://codeworks.blob.core.windows.net/public/assets/img/projects/witwics-logo.png" height="65"
class="logo">
</a>
<h5>
<span>Carmen Sandiego</span>
<span id="breadcrumb"></span>
</h5>
</section>
<section>
<div id="mocha"></div>
</section>
<script src="https://cdnjs.cloudflare.com/ajax/libs/axios/0.21.1/axios.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/chai/4.2.0/chai.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mocha/6.1.4/mocha.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/confetti-js@0.0.18/dist/index.min.js"
integrity="sha256-p6aQfSnK5puy5yn9xCIyBjJKv5FFMhVoHvJqT7ZGdZU=" crossorigin="anonymous"></script>
<script src="app/clue1.js"></script>
<script src="app/clue2.js"></script>
<script src="app/clue3.js"></script>
<script src="app/clue4.js"></script>
<script src="app/clue5.js"></script>
<script src="test/runner.js" type="module"></script>
</body>
</html>