-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
101 lines (90 loc) · 2.95 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Whispers no.1</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Mro&display=swap');
body {
font-family: 'Noto Sans Mro', sans-serif;
line-height: 1;
margin: 0;
padding: 0;
background-color: #f4f4f4;
color: #333;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.lyrics-container {
background: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
max-width: 800px;
text-align: center;
}
h1 {
font-size: 14px;
margin-bottom: 10px;
}
.lyrics {
white-space: pre-wrap;
font-size: 12px;
text-align: left;
line-height: 0.8;
}
.footer {
margin-top: 20px;
font-size: 12px;
color: #777;
}
.audio-player {
margin-bottom: 20px;
}
</style>
</head>
<body>
<div class="lyrics-container">
<div class="audio-player">
<audio controls>
<source src="matilda-mother_audio_super.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
</div>
<h1>Mother is telling a story but probably with a full busy distracted mind</h1>
<div class="lyrics">
<p>
There was a king who ruled the land<br>
His majesty was in command<br><br>
With silver eyes the scarlet eagle<br>
Showers silver on the people<br>
Oh mother, tell me more<br><br>
Why'd'ya have to leave me there<br>
Hanging in my infant air<br>
Waiting?<br>
You only have to read the lines<br>
They're scribbly black and everything (shines)<br><br>
Across the stream with wooden shoes<br>
With bells to tell the king the news<br>
A thousand misty riders climb up<br>
Higher once upon a time<br><br>
Wandering and dreaming<br>
The words have different meaning<br>
Yes they did<br><br>
For all the time spent in that room<br>
The doll's house, darkness, old perfume<br>
And fairy stories held me high on<br>
Clouds of sunlight floating by<br>
Oh mother, tell me more<br>
Tell me more
</p>
</div>
<div class="footer">
<p>Lyrics by Syd</p>
</div>
</div>
</body>
</html>