Skip to content

Instantly share code, notes, and snippets.

@cobergmd
Created January 5, 2020 15:27
Show Gist options
  • Save cobergmd/6ce732352b23d4f10642ef628efe9087 to your computer and use it in GitHub Desktop.
Save cobergmd/6ce732352b23d4f10642ef628efe9087 to your computer and use it in GitHub Desktop.
Music Notation with Bravura Text and Unicode
<!DOCTYPE html >
<html lang="en">
<head>
<meta charset="utf-8">
<style>
@font-face {
font-family: "BravuraText";
src: url(BravuraText.woff);
}
.notes {
font-family: "Bravura Text";
font-size: 30pt;
}
</style>
</head>
<body>
<div>Jam</div>
<div class="notes">
&#xE1F0;
</div>
<div>Jelly</div>
<div class="notes">
&#xE1F0;&#xE1F7;&#xE1F2;
</div>
<div>Blueberry</div>
<div class="notes">
&#xE1F0;&#xE1F7;&#xE1F2;&#xE1F9;&#xE1F4;
</div>
<div>PeanutButter</div>
<div class="notes">
&#xE1F0;&#xE1F9;&#xE1F4;&#xE1F9;&#xE1F4;&#xE1F9;&#xE1F4;
</div>
<div>Bread</div>
<div class="notes">
&#xE4E5;
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment