Roboto Mono Font Example
Answer to https://stackoverflow.com/questions/66796778/why-roboto-mono-font-does-not-appear-as-fixed-width-monospace
by Trevin Avery
HTML
<!-- font from https://fonts.google.com/specimen/Roboto+Mono -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap" rel="stylesheet">
<p class="roboto">
Some Monospaced Text
</p>
CSS
p.roboto {
font-family: 'Roboto Mono';
}