-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathNE131.html
More file actions
102 lines (79 loc) · 3.79 KB
/
NE131.html
File metadata and controls
102 lines (79 loc) · 3.79 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
<!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>Physics 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>NE131</td>
<td onclick="window.location.href = 'physics/coursenotes.html'">Course Notes</td>
</tr>
<tr>
<td>NE131</td>
<td onclick="window.location.href = 'physics/homeworksets.html'">Homework Sets</td>
</tr>
<tr>
<td>NE131</td>
<td onclick="window.location.href = 'physics/tutorial.html'">Tutorial</td>
</tr>
<tr>
<td>NE131</td>
<td onclick="window.location.href = 'physics/formulasheet.html'">Formula Sheets</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>