-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlesson.html
75 lines (65 loc) · 2.67 KB
/
lesson.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
<!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:contact@catherinephang.com?subject=subject text" target="_blank"><i class="fa-solid fa-envelope"></i></a>
</li>
</div>
</header>
<div class="box_container">
<div class="box1">
<h1>Private Piano Lesson</h1>
<br>
<p>
+ Accepting in-home/studio students<br>
+ Studio location: Evanston, IL<br>
<br>
<a href="https://drive.google.com/file/d/1bugfbwPrryj7WGOG47ewWdvKmyqj4iSK/view" target="_blank">C.V</a><br>
<a href="mailto:contact@catherinephang.com?subject=subject text" target="_blank">Contact</a>
</p>
</div>
<div class="box2">
</div>
</div>
<script src="js.js"></script>
</body>
<footer>
<div class="credit">
<p>2022 designed by Cat Phang.</p>
</div>
</footer>
</html>