-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcase-studies.html
More file actions
47 lines (42 loc) · 1.3 KB
/
case-studies.html
File metadata and controls
47 lines (42 loc) · 1.3 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
44
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="styles.css">
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Case Studies</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="hamburger-menu">
<a href="progress.html">Progress</a>
<a href="stats.html">Badges</a>
<a href="settings.html">Settings</a>
</div>
<div class="top-bar">
<button class="hamburger" onclick="toggleSidebar()">☰</button>
<div class="profile"><a href="profile.html"><img src="pfp.jpg" alt="Profile" /></a></div>
</div>
<div class="sidebar" id="sidebar">
<ul>
<li><a href="home.html">Home</a></li>
<li><a href="progress.html">Progress</a></li>
<li><a href="badges.html">Badges</a></li>
<li><a href = motionpractice.html>Motion Practice </a></li>
<li><a href="settings.html">Settings</a></li>
</ul>
</div>
<div class="main">
<div class="content-box">
<h2>Case Studies</h2>
<p>Explore curated real debate examples. Optionally open BP intro.</p>
<a href="case-study-quiz.html">Next ➔</a>
</div>
</div>
<script>
function toggleSidebar() {
document.getElementById("sidebar").classList.toggle("active");
}
</script>
</body>
</html>