-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomp.html
123 lines (109 loc) · 5.44 KB
/
comp.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE-edge">
<meta name="viewport" content="width=device-width", initial-scale="1.0">
<title>Han Geul Lee</title>
<script src="https://kit.fontawesome.com/49f867c7a6.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="style.css">
<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=EB+Garamond:ital,wght@0,400;0,500;1,400;1,500&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Lora:wght@400;500&family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap" rel="stylesheet">
</head>
<body>
<header class="primary-header">
<a href="index.html"><h1>Han Lee</h1></a>
<button class="mobile-nav-toggle" aria-controls="primary-navigation" aria-expanded="false">
<span class="sr-only">Menu</span>
</button>
<nav>
<ul id="primary-navigation" data-visible="false" class="primary-navigation">
<li>
<a href="perf.html">Performance</a>
</li>
<li>
<a href="comp.html">Composition</a>
</li>
<li>
<a href="Inst.html">Installation</a>
</li>
<li>
<a href="lesson.html">Lesson</a>
</li>
</ul>
</nav>
<div class="sns">
<li class="sns">
<a href="https://linktr.ee/xpkgg" target="_blank"><i class="fa-solid fa-tree"></i></a>
<a href="mailto:[email protected]?subject=subject text" target="_blank"><i class="fa-solid fa-envelope"></i></a>
</li>
</div>
</header>
<!--Content-->
<!--category-->
<div class = "main-container">
<div class = "filter-container">
<div class = "category-head">
<ul>
<div class = "category-title active" id = "all">
<li>All</li>
</div>
<div class = "category-title" id = "acoustic">
<li>Acoustic</li>
</div>
<div class = "category-title" id = "electronic">
<li>Electronic</li>
</div>
<div class = "category-title" id = "electro-acoustic">
<li>Electro-acoustic</li>
</div>
</ul>
</div>
<div class = "posts-collect">
<div class = "posts-main-container">
<!-- single post -->
<div class = "all electro-acoustic">
<div class = "post-vid">
<iframe src="https://www.youtube.com/embed/D8Ioyj33h3k" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<span class = "category-name"></span>
</div>
<div class = "post-content">
<div class = "post-content-top">
<span>Night Terror Solips (2020)</span>
</div>
<br>
<h3>Instrumentation:</h3><p>piano and live electronic</p><br>
<h3>Performed by:</h3><p>Han Geul Lee</p><br>
</div>
</div>
<!-- end of single post -->
<!-- single post -->
<div class = "all electro-acoustic">
<div class = "post-vid">
<iframe src="https://www.youtube.com/embed/nGtpOy0UCrE" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<span class = "category-name"></span>
</div>
<div class = "post-content">
<div class = "post-content-top">
<span>Sacred Invective (2021)</span>
</div>
<br>
<h3>Instrumentation:</h3><p>flute and live electronic</p><br>
<h3>Performed by:</h3><p>Stephanie Dressler</p><br>
<h3>Venue:</h3><p>Manhattan School of Music (New York, NY)</p><br>
</div>
</div>
<!-- end of single post -->
</div>
</div>
</div>
</div>
<script src="js.js"></script>
</body>
<footer>
<div class="credit">
<p>2022 designed by Cat Phang.</p>
</div>
</footer>
</html>