-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathworks.html
47 lines (46 loc) · 1.61 KB
/
works.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ming Yang - Works</title>
<link rel="stylesheet" href="styles.css">
<script src="index.js" type="text/javascript" defer></script>
</head>
<body>
<header-component></header-component>
<h2>works</h2>
<section class="indexpage-content">
<h3>concert pieces</h3>
<ul>
<li><a href="./works/concert/crossroad.html">Cross Road →</a></li>
<li><a href="./works/concert/shortsongs.html">Short Songs →</a></li>
<li><a href="./works/concert/virus.html">Virus →</a></li>
</ul>
<br>
<h3>installations</h3>
<ul>
<li><a href="./works/installations/nothing.html">Nothing →</a></li>
<li><a href="./works/installations/transcendingboundaries.html">Transcending Boundaries →</a></li>
</ul>
<br>
<h3>experiments</h3>
<ul>
<li>
<p>Shadow of the Sound
<button class="modal-btn show-if-desktop" data-pdf-url="../../assets/pdfs/shadowofthesound.pdf">View</button>
<a class="show-if-mobile" href="../../assets/pdfs/shadowofthesound.pdf" download style="text-decoration: underline;">Download pdf ↓</a>
</p>
</li>
</ul>
<br>
</section>
<!-- PDF Modal -->
<div id="pdf-modal" class="modal">
<div class="modal-content">
<span class="close">×</span>
<iframe id="pdf-frame" src="" frameborder="0"></iframe>
</div>
</div>
</body>
</html>