-
Notifications
You must be signed in to change notification settings - Fork 0
/
working-memory-interactive.html
54 lines (40 loc) · 1.33 KB
/
working-memory-interactive.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
49
50
51
52
53
54
<!DOCTYPE html>
<html lang='en'>
<head>
<title> What is 'working memory'? See for yourself! | A Fun, Interactive, Hands-On Explanation! </title>
<Link rel='stylesheet' href='working-memory-interactive/working-memory-interactive.css'>
<link rel="icon" href="favicon.ico">
</head>
<body>
<!-- HEADER BANNER -->
<div class='headerBannerHolder'>
<a href=''
class='headerRightElement'
id='home'>
HOME
</a>
<a href='ourMission'
class='headerRightElement'
id='ourMission'>
OUR MISSION
</a>
<a href='logIn'
class='headerRightElement'
id='logIn'>
LOG IN
</a>
<a href='getStarted'
class='headerRightElement'
id='getStarted'>
GET STARTED
</a>
</div>
<div id='reactRendersHere'>
</div>
<!-- REACT SCRIPTS -->
<!-- Note: when deploying, replace "development.js" with "production.min.js". -->
<script src="https://unpkg.com/react@17/umd/react.production.min.js" crossorigin></script>
<script src="https://unpkg.com/react-dom@17/umd/react-dom.production.min.js" crossorigin></script>
<script type='module' src='working-memory-interactive/working-memory-interactive.js'></script>
</body>
</html>