-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMATH117.html
More file actions
132 lines (103 loc) · 5.19 KB
/
MATH117.html
File metadata and controls
132 lines (103 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
<!DOCTYPE html>
<link rel = "stylesheet" type = "text/css" href = "myindexstyleorg.css">
<link rel = "stylesheet" type = "text/css" href = "tablestyle2.css">
<html>
<div id = "container">
<head>
<div class = "title">
<title>TheNanoScribe</title>
</div>
</head>
<body class = "homepage">
<header class = "navbar">
<a id = "logo" href = "index.html"><strong>TheNanoScribe</strong></a>
<nav>
<ul class = "nav_options">
<li><a href = "first_year.html">First Year</a></li>
<li><a href = "second_year.html">Second Year</a></li>
<li><a href = "third_year.html">Third Year</a></li>
<li><a href = "fourth_year.html">Fourth Year</a></li>
<!-- <li><a href = #>Coop</a></li>
<li><a href = #>2B</a></li>
<li><a href = #>Coop</a></li>
<li><a href = #>Coop</a></li>
<li><a href = #>3A</a></li>
<li><a href = #>3B</a></li>
<li><a href = #>Coop</a></li>
<li><a href = #>Coop</a></li>
<li><a href = #>4A</a></li>
<li><a href = #>4B</a></li> -->
</ul>
</nav>
</header>
</body>
</div>
<br><br><br><br><br>
<h1><span class="blue"><</span>MATH117 Course Content<span class="blue">></span> <span class="yellow"></pan></h1>
<br><br>
<table class="containertable">
<thead>
<tr>
<th><h1>Course</h1></th>
<th><h1>Content Content</h1></th>
</tr>
</thead>
<tbody>
<tr>
<td>MATH117</td>
<td onclick="window.location.href = 'math/mathcoursenotes.html'">Course Notes</td>
</tr>
<tr>
<td>MATH117</td>
<td onclick="window.location.href = 'math/mathhomeworksets.html'">Homework Questions</td>
</tr>
<tr>
<td>MATH117</td>
<td onclick="window.location.href = 'math/mathhomeworksol.html'">Homework Solutions</td>
</tr>
<tr>
<td>MATH117</td>
<td onclick="window.location.href = 'math/mathmidterm.html'">Midterm</td>
</tr>
<tr>
<td>MATH117</td>
<td onclick="window.location.href = 'math/mathmidtermsol.html'">Midterm Solutions</td>
</tr>
<tr>
<td>MATH117</td>
<td onclick="window.location.href = 'math/mathfinal.html'">Final</td>
</tr>
<tr>
<td>MATH117</td>
<td onclick="window.location.href = 'math/mathfinalsol.html'">Final Solutions</td>
</tr>
<tr>
<td>MATH117</td>
<td onclick="window.location.href = 'math/mathquizzes.html'">Quizzes</td>
</tr>
<tr>
<td>MATH117</td>
<td onclick="window.location.href = 'math/mathformulasheet.html'">Quiz Solutions</td>
</tr>
<tr>
<td>MATH117</td>
<td onclick="window.location.href = 'math/mathformulasheet.html'">Formula Sheet</td>
</tr>
</tbody>
</table>
<script>
// document.addEventListener("DOMContentLoaded", () => {
// const rows = document.querySelectorAll("tr[data-href]");
// rows.forEach(row => {
// row.addEventListener("click", ()=> {
// window.location.href = row.dataset.href;
// });
// });
// });
$(document).ready(function () {
$(document.body).on("click", "tr[data-href]", function() {
window.location.href = this.dataset.href;
});
});
</script>
</html>