-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmusic.html
More file actions
73 lines (66 loc) · 3.29 KB
/
music.html
File metadata and controls
73 lines (66 loc) · 3.29 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
<!DOCTYPE html>
<html>
<head>
<title>Yushan Mu | Music</title>
<meta name="description" content="This is my personal website">
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<header class="main-header">
<nav class="nav main-nav">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="music.html">Music</a></li>
<li><a href="travel.html">Travel</a></li>
<li><a href="resume.html">Resume</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<h1 class="my-name-big">Yushan Mu</h1>
</header>
<section class="content-section container">
<h2 class="section-header">Music</h2>
<div>
I mainly sing but I also play the piano and the guitar.
</div>
<div>
<br>
🎤 I enjoy singing Chinese / Japanese pop songs the most, and I am currently taking voice lessons to sing better.
I made a lot of friends from making covers and I also learned cool skills such as audio engineering and video editing!
Here is one of my favourite covers:
<br>
<br>
<iframe width="560" height="315" src="https://www.youtube.com/embed/NShwWvUUJ2o"
title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope;
picture-in-picture" allowfullscreen></iframe>
</div>
<div>
<br>
🎹 I started playing the piano when I was four, and I learned a lot of classical pieces. Although I haven't been playing
as much, it would be cool to get back into it! My favourite piece to play is Arabesque No. 1 by Debussy.
</div>
<div>
<br>
🎸 I started playing the acoustic guitar in Grade 8 under the influence of Japanese fingerstyle. One of my favourite
artist is Masaaki Kishibe, here are three pieces that I covered for an independent study unit project for Grade 12 music
class! I hope you liked it as much as my music teacher did :D
<span>
<a href="https://soundcloud.com/lilg4wuk4ie9/sets/i-should-become-a-guitar-major"
target="_blank"> <!-- target="_blank" opens link in new tab -->
<button type="button">Listen Here!</button> </a>
</span>
<br>
<br>
</div>
</section>
<footer class="main-footer">
<div class="container main-footer-container">
<h3 class="my-name">Yushan Mu</h3>
<ul class="nav footer-nav">
<li><a href="https://space.bilibili.com/266409599"><img src="bilibili logo.png" width="25"></a></li>
<li><a href="https://github.com/yushan-mu"><img src="github logo.png" width="25"></a></li>
</ul>
</div>
</footer>
</body>
</html>