-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathteaching.html
More file actions
62 lines (52 loc) · 2.2 KB
/
Copy pathteaching.html
File metadata and controls
62 lines (52 loc) · 2.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ben Johansen</title>
<!-- google font -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css" />
<script defer src="index.js"></script>
</head>
<body>
<header>
<h1>Ben Johansen</h1>
<nav>
<a href='index.html'>About</a>
<a href='music.html'>Music</a>
<a href='teaching.html'>Teaching</a>
<a href='research.html'>Research</a>
<a href='contact.html'>Contact</a>
</nav>
</header>
<!-- About -->
<section id='Teaching' class="no-bullets">
<h2>Current Courses</h2>
<ul>
<li><strong>Technology for Musicians</strong> <em>MUS1331</em></li>
<ul>
<li>equips students with technology literacies and the capacities to critically engage and thrive in a technological world</li>
</ul>
<li><strong>Electroacoustic Music Composition</strong> <em>MUS4203</em></li>
<ul>
<li>literature study, composition, and performance of fixed and interactive electroacoustic music</li>
</ul>
<li><strong>Advanced Electroacoustic Music Composition</strong> <em>MUS4V09</em></li>
<ul>
<li>one-on-one lessons focusing on a substantial electronic music project</li>
</ul>
<li><strong><a href="https://music.baylor.edu/composition/syllabus">Composition Lessons</a></strong> <em>MUS 1107, 1108, 2207, 2208, 3207, 3307, 3308, 4307, 4308, 5207, 5208, 5209</em></li>
<ul>
<li>one-on-one lessons</li>
</ul>
</ul>
</section>
</body>
<footer>
<p>© 2026 Ben Johansen. All rights reserved.</p>
</footer>
</body>
</html>