-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphys1007.html
More file actions
168 lines (147 loc) · 4.82 KB
/
phys1007.html
File metadata and controls
168 lines (147 loc) · 4.82 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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PHYS 1007 - Course Materials | Ryan Chown</title>
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600&family=Lato:wght@300;400;700&display=swap" rel="stylesheet">
<style>
.course-header {
background-color: #1e3d59;
color: white;
text-align: center;
padding: 3rem 2rem;
margin-top: 60px;
}
.course-header h1 {
color: white;
text-shadow: none;
margin-bottom: 0.5rem;
}
.course-header p {
font-size: 1.2rem;
margin-top: 0.5rem;
}
.materials-section {
max-width: 1000px;
margin: 0 auto;
padding: 3rem 2rem;
}
.materials-section h2 {
color: #1e3d59;
margin-top: 2rem;
margin-bottom: 1.5rem;
padding-bottom: 0.5rem;
border-bottom: 2px solid #1e3d59;
}
.materials-section h2:first-of-type {
margin-top: 0;
}
.materials-list {
list-style: none;
padding: 0;
}
.materials-list li {
background-color: #f5f8fb;
margin-bottom: 1rem;
padding: 1.5rem;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.materials-list li:hover {
transform: translateY(-2px);
box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}
.materials-list a {
color: #1e3d59;
text-decoration: none;
font-weight: 500;
font-size: 1.1rem;
display: block;
}
.materials-list a:hover {
color: #2c6bb0;
text-decoration: underline;
}
.materials-list .description {
color: #666;
font-size: 0.95rem;
margin-top: 0.5rem;
font-style: italic;
}
.back-link {
display: inline-block;
margin: 2rem 0;
padding: 0.75rem 1.5rem;
background-color: #1e3d59;
color: white;
text-decoration: none;
border-radius: 4px;
transition: background-color 0.3s;
}
.back-link:hover {
background-color: #16324d;
}
.empty-section {
color: #999;
font-style: italic;
padding: 1rem;
background-color: #f8f9fa;
border-radius: 8px;
}
</style>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html#home">Home</a></li>
<li><a href="index.html#research">Research</a></li>
<li><a href="index.html#cv">CV & Publications</a></li>
<li><a href="index.html#teaching">Teaching</a></li>
<li><a href="index.html#contact">Contact</a></li>
</ul>
</nav>
</header>
<div class="course-header">
<h1>PHYS 1007: Introductory Physics II</h1>
<p>Winter 2026 (26W)</p>
<p>Course Materials</p>
</div>
<main>
<div class="materials-section">
<a href="index.html#teaching" class="back-link">← Back to Teaching</a>
<h2>Syllabus</h2>
<ul class="materials-list">
<li>
<a href="#" target="_blank">Course Syllabus (PDF)</a>
<div class="description">Complete course outline, schedule, and policies</div>
</li>
</ul>
<h2>Lectures</h2>
<ul class="materials-list">
<li>
<div class="empty-section">Lecture materials will be posted here as they become available.</div>
</li>
</ul>
<h2>Tests & Exams</h2>
<ul class="materials-list">
<li>
<div class="empty-section">Test and exam materials will be posted here as they become available.</div>
</li>
</ul>
<h2>Additional Resources</h2>
<ul class="materials-list">
<li>
<div class="empty-section">Additional course resources will be posted here as they become available.</div>
</li>
</ul>
</div>
</main>
<footer>
<p>© 2025 Ryan Chown. All rights reserved.</p>
</footer>
</body>
</html>