-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathunit.html
More file actions
43 lines (38 loc) · 1.38 KB
/
unit.html
File metadata and controls
43 lines (38 loc) · 1.38 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Select Module</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<header class="site-header">
<div class="site-header-inner">
<a class="site-brand" href="index.html">LearnToCode</a>
<nav class="site-nav" aria-label="Primary">
<a class="site-nav-link" href="index.html">Home</a>
<a class="site-nav-link" href="workshop.html">Workshop</a>
<a class="site-nav-link" href="about.html">About</a>
</nav>
</div>
</header>
<main class="app home-layout">
<header class="card home-hero">
<h1 id="unitTitle">Select Module</h1>
<p>Select one of the 14 structured modules for your chosen topic.</p>
</header>
<section class="card home-card">
<div class="unit-grid" id="unitGrid"></div>
</section>
<section class="card home-card">
<div class="link-row">
<a id="backToTopic" class="study-link secondary" href="topic.html">Back</a>
<a id="reviewGuide" class="study-link" href="study-guide.html">Open Study Guide</a>
</div>
</section>
</main>
<script src="js/app/header-progress.js"></script>
<script src="js/pages/unit.js"></script>
</body>
</html>