-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathoutlines.html
More file actions
134 lines (124 loc) · 5.19 KB
/
outlines.html
File metadata and controls
134 lines (124 loc) · 5.19 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8" />
<title>CU Math Society</title>
<meta name="og:title" content="CarletonU Math Society">
<meta name="og:image" content="https://cumathsoc.github.io/images/logo/logo-square.png">
<meta name="og:description"
content="CarletonU Student Math Society dedicated to bringing students and faculty of Mathematics together">
<meta name="keywords" content="CarletonU Math Society, CarletonU, Math, Stats, CUMathSoc">
<meta name="description" content="CarletonU Student Math Society">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="google-site-verification" content="rOqniYc2bAhykxGviu6xy96hSdAlxScfPeYfZqXcX9c" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="icon" type="image/png" href="images/logo/logo.png">
<!--I am lazy to make a proper favicon-->
<script charset="utf-8" src="script.js"></script>
<link rel="stylesheet" href="style.css" />
<style>table {
border-collapse: collapse;
border-spacing: 0;
width: 100%;
border: 1px solid #bbb;
font-size: medium;
}
th, td {
text-align: left;
padding: 16px;
}
tr:nth-child(even) {
background-color: #f2f2f2;
}</style>
</head>
<body>
<img src = 'images/tux.png' id = "tux"/>
<header>
<div id="logo"><a href="index.html"><img src="images/logo/logo.png" /></a></div>
<a href="javascript:void(0);" class="hamburger-nav" onclick="toggleMenu()"><i class="fa fa-bars"></i></a>
<h1 id="club-name">CarletonU Math & Stat Society</h1>
<nav id="header-nav">
<a href="index.html">News</a>
<a href="gallery.html">Gallery</a>
<a href="video.html">Videos</a>
<a href="resources.html">Resources</a>
<a href="merch.html">Merch</a>
<a href="about.html">About</a>
</nav>
<nav id="nav-social">
<a href="https://discord.gg/4ttYNMWkVw"><i class="fa-brands fa-discord"></i></a>
</nav>
</header>
<button onclick="toTop()" id="top_btn" title="Go to top">Top</button>
<div class="section">
<div class="content">
<h2 class="section-title">Outlines</h2>
<button class="accordion">1000 Level</button>
<div class="panel">
<table>
<tr>
<th>Course Code</th>
<th>Title</th>
<th>Outline</th>
</tr>
<tr>
<td>MATH1004</td>
<td>Calculus for Engineering or Physics</td>
<td><a href = "https://www.cs.helsinki.fi/u/kutvonen/index_files/linus.pdf">Available</a></td>
</tr>
<tr>
<td>MATH1052</td>
<td>Calculus and Introductory Analysis I</td>
<td><a href = "https://www.cs.helsinki.fi/u/kutvonen/index_files/linus.pdf">Available</a></td>
</tr>
<tr>
<td>MATH1152</td>
<td>Introductory Algebra 1</td>
<td><a href = "https://www.cs.helsinki.fi/u/kutvonen/index_files/linus.pdf">Available</a></td>
</tr>
</table>
</div>
<button class="accordion">2000 Level</button>
<div class="panel">
<table>
<tr>
<th>Course Code</th>
<th>Title</th>
<th>Outline</th>
</tr>
<tr>
<td>MATH2000</td>
<td>Multivariable Calculus and Fundamentals of Analysis</td>
<td><a href = "https://www.cs.helsinki.fi/u/kutvonen/index_files/linus.pdf">Available</a></td>
</tr>
<tr>
<td>MATH2100</td>
<td>Algebra</td>
<td><a href = "https://www.cs.helsinki.fi/u/kutvonen/index_files/linus.pdf">Available</a></td>
</tr>
</table>
</div>
<button class="accordion">3000 Level</button>
<div class="panel">
<p>Lorem ipsum...</p>
</div>
<button class="accordion">4000 Level</button>
<div class="panel">
<p>Lorem ipsum...</p>
</div>
</div>
</div>
<footer>
<p>Join CarletonU Math Society on <a href="https://discord.gg/4ttYNMWkVw" onmouseover="showTux()" onmouseout="hideTux()"><i
class="fa-brands fa-discord"></i></a></p>
<div class = "secret">Linux for Life</div>
</footer>
<!-- Script must be placed at the bottom since not using JQuery so the elements are not detected when page is loaded -->
<script charset="utf-8" src="scripts/outlines.js"></script>
</body>
<script>
piTime();
</script>
</html>