-
Notifications
You must be signed in to change notification settings - Fork 0
/
sub.html
56 lines (47 loc) · 1.75 KB
/
sub.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
55
56
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>JS Subject Page</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" type="text/css" media="screen" href="css/header.css" />
<!-- <link rel="stylesheet" type="text/css" media="screen" href="css/homepage.css" /> -->
<link rel="stylesheet" type="text/css" media="screen" href="css/sub.css" />
</head>
<body>
<script src="js/header.js"></script>
<main id="main">
<div>
<h2>JavaScript Fundamentals</h2>
<div class="container" id="fundamentals"></div>
</div>
<div>
<h2>Control Flow and Program Structure</h2>
<div class="container" id="control-flow"></div>
</div>
<div>
<h2>Functions - Organizing Code</h2>
<div class="container" id="functions"></div>
</div>
<div>
<h2>Data Structures - Arrays and Objects</h2>
<div class="container" id="data-structures"></div>
</div>
<div id="plus">+</div>
<section>
<a id="more" href="#">More Options</a>
</section>
<section id="options">
<a id="bloopers" href="#">Add Blooper Cards</a>
<a id="progress" href="#">Reset Progress</a>
<a id="reset" href="#">Reset Cards to Originals</a>
</section>
</main>
<script src="js/allCards.js"></script>
<script src="js/blooper.js"></script>
<script src="js/sub.js"></script>
</body>
</html>