<!--
Adapted from <code>
https://codepen.io/prather-mcs/pen/rOoKYo
</code>
-->
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<p>This uses html symbol encoding: <span class="big">▦</span></p>
<p>Let's make a symbol of one color: <span class="big color1">▶</span></p>
<p>And another of another color: <span class="big color2">◆</span></p>
<span class="big">▦</span> <sup><sup><span class="med color1">▶</span></sup></sup><span class="big color2">◆</span>
</body>
</html>
.big {font-size: 78px;}
.med{font-size: 48px;}
.small{font-size: 30px;}
.color1 {
color: #f00;
}
.color2 {
color: #00f;
}
function main() {
return;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.