Source code
Revision control
Copy as Markdown
Other Tools
<!doctype html>
<link rel="stylesheet" href="/fonts/ahem.css">
<style>
:root {
font: 10px/1 Ahem;
}
body { margin: 0 }
.container {
font-size: 20px;
}
line {
stroke-width: 8px;
stroke: lime;
}
svg {
background-color: black;
}
</style>
<div class="container">
<svg width=400 height=400>
<line y1=40 y2=40 x1=0 x2=80 /> <!-- em -->
<line y1=60 y2=60 x1=0 x2=64 /> <!-- ex -->
<line y1=80 y2=80 x1=0 x2=64 /> <!-- cap -->
<line y1=100 y2=100 x1=0 x2=80 /> <!-- ch -->
<line y1=120 y2=120 x1=0 x2=80 /> <!-- ic -->
<line y1=140 y2=140 x1=0 x2=80 /> <!-- lh -->
<line y1=240 y2=240 x1=0 x2=40 /> <!-- em -->
<line y1=260 y2=260 x1=0 x2=32 /> <!-- ex -->
<line y1=280 y2=280 x1=0 x2=32 /> <!-- cap -->
<line y1=300 y2=300 x1=0 x2=40 /> <!-- ch -->
<line y1=320 y2=320 x1=0 x2=40 /> <!-- ic -->
<line y1=340 y2=340 x1=0 x2=40 /> <!-- lh -->
</svg>
</div>