Skip to content

Commit

Permalink
update audio
Browse files Browse the repository at this point in the history
  • Loading branch information
CosmonautKitten committed Dec 13, 2024
1 parent 546fcf3 commit d5d9986
Show file tree
Hide file tree
Showing 17 changed files with 32 additions and 1 deletion.
Binary file added audio/b.ogg
Binary file not shown.
Binary file added audio/e.ogg
Binary file not shown.
Binary file added audio/g.ogg
Binary file not shown.
Binary file added audio/i.ogg
Binary file not shown.
Binary file added audio/j.ogg
Binary file not shown.
Binary file added audio/k.ogg
Binary file not shown.
Binary file added audio/l.ogg
Binary file not shown.
Binary file added audio/m.ogg
Binary file not shown.
Binary file added audio/n.ogg
Binary file not shown.
Binary file added audio/o.ogg
Binary file not shown.
Binary file added audio/p.ogg
Binary file not shown.
Binary file added audio/s.ogg
Binary file not shown.
Binary file added audio/t.ogg
Binary file not shown.
Binary file added audio/u.ogg
Binary file not shown.
Binary file added audio/w.ogg
Binary file not shown.
30 changes: 30 additions & 0 deletions lessons/lesson1/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,36 @@ <h3>the alphabet</h3>
<div class="container" style="justify-content: center">
<audio id="a" src="/audio/a.ogg" preload="auto"></audio>
<button style="width:50px" onclick="document.getElementById('a').play();">a</button>
<audio id="b" src="/audio/b.ogg" preload="auto"></audio>
<button style="width:50px" onclick="document.getElementById('b').play();">b</button>
<audio id="e" src="/audio/e.ogg" preload="auto"></audio>
<button style="width:50px" onclick="document.getElementById('e').play();">e</button>
<audio id="g" src="/audio/g.ogg" preload="auto"></audio>
<button style="width:50px" onclick="document.getElementById('g').play();">g</button>
<audio id="i" src="/audio/i.ogg" preload="auto"></audio>
<button style="width:50px" onclick="document.getElementById('i').play();">i</button>
<audio id="j" src="/audio/j.ogg" preload="auto"></audio>
<button style="width:50px" onclick="document.getElementById('j').play();">j</button>
<audio id="k" src="/audio/k.ogg" preload="auto"></audio>
<button style="width:50px" onclick="document.getElementById('k').play();">k</button>
<audio id="l" src="/audio/l.ogg" preload="auto"></audio>
<button style="width:50px" onclick="document.getElementById('l').play();">l</button>
<audio id="m" src="/audio/m.ogg" preload="auto"></audio>
<button style="width:50px" onclick="document.getElementById('m').play();">m</button>
<audio id="n" src="/audio/n.ogg" preload="auto"></audio>
<button style="width:50px" onclick="document.getElementById('n').play();">n</button>
<audio id="o" src="/audio/o.ogg" preload="auto"></audio>
<button style="width:50px" onclick="document.getElementById('o').play();">o</button>
<audio id="p" src="/audio/p.ogg" preload="auto"></audio>
<button style="width:50px" onclick="document.getElementById('p').play();">p</button>
<audio id="s" src="/audio/s.ogg" preload="auto"></audio>
<button style="width:50px" onclick="document.getElementById('s').play();">s</button>
<audio id="t" src="/audio/t.ogg" preload="auto"></audio>
<button style="width:50px" onclick="document.getElementById('t').play();">t</button>
<audio id="u" src="/audio/u.ogg" preload="auto"></audio>
<button style="width:50px" onclick="document.getElementById('u').play();">u</button>
<audio id="w" src="/audio/w.ogg" preload="auto"></audio>
<button style="width:50px" onclick="document.getElementById('w').play();">w</button>
</div>
<h3>vowels</h3>
<p>the vowels have a similar pronunciation to Spanish, Italian, or Toki Pona</p>
Expand Down
3 changes: 2 additions & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,8 @@ button {
.container {
display: flex;
align-items: center;
gap: 10px
gap: 5px;
margin: 10px auto
}

.center-text {
Expand Down

0 comments on commit d5d9986

Please sign in to comment.