static: replace emojis by unicode code points

This commit is contained in:
coon 2023-12-05 02:45:28 +01:00
parent 6626585a15
commit 2056414a39

View file

@ -16,10 +16,15 @@
</div> </div>
<div id="playback-controls"> <div id="playback-controls">
<div> <div>
<button>⏮️</button> <button>&#x23EE;&#xFE0E;</button> <!-- ⏮️ Last Track Button -->
<button>⏯️</button> <button>&#x23F9;&#xFE0E;</button> <!-- ⏹️ Stop Button -->
<button>⏹️</button> <button>&#x23EF;&#xFE0E;</button> <!-- ⏯️ Play or Pause Button -->
<button>⏭️</button> <button>&#x23ED;&#xFE0E;</button> <!-- ⏭️ Next Track Button -->
<!--
<button>&#x25B6;&#xFE0E;</button> <!-- ▶️ Play Button -- >
<button>&#x23F8;&#xFE0E;</button> <!-- ⏸️ Pause Button -- >
-->
</div> </div>
<div> <div>
<input type="range" id="progress" name="progress" min="0" max="100" value="0"> <input type="range" id="progress" name="progress" min="0" max="100" value="0">