Skip to content

Instantly share code, notes, and snippets.

@BDFife
Last active December 30, 2015 06:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BDFife/7787524 to your computer and use it in GitHub Desktop.
Save BDFife/7787524 to your computer and use it in GitHub Desktop.
Test code that demonstrates iOS Monospace with Courier and Courier New
<html>
<head>
<style>
code { font-family: Courier; }
.new code { font-family: "Courier New";}
</style>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<p> Courier Font:</p>
<code>
&#9484; &#9472; &#9472; &#9472; &#9472; &#9472; &#9472; &#9472; &#9488; <br>
a a a a a a a a a <br>
&#9474; &middot; &middot; &middot; &middot; &middot; &middot; &middot; &#9474; <br>
@ @ @ @ @ @ @ @ @ <br>
&#9474; &middot; &middot; &middot; &middot; &middot; &middot; &middot; &#9474; <br>
&#9474; &middot; &middot; &middot; &middot; &middot; &middot; &middot; &#9474; <br>
&#9474; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &#9474; <br>
&#9492; &#9472; &#9472; &#9472; &#9472; &#9472; &#9472; &#9472; &#9496; <br>
</code>
<div class="new">
<p> "Courier New" Font:</p>
<code>
&#9484; &#9472; &#9472; &#9472; &#9472; &#9472; &#9472; &#9472; &#9488; <br>
a a a a a a a a a <br>
&#9474; &middot; &middot; &middot; &middot; &middot; &middot; &middot; &#9474; <br>
@ @ @ @ @ @ @ @ @ <br>
&#9474; &middot; &middot; &middot; &middot; &middot; &middot; &middot; &#9474; <br>
&#9474; &middot; &middot; &middot; &middot; &middot; &middot; &middot; &#9474; <br>
&#9474; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &#9474; <br>
&#9492; &#9472; &#9472; &#9472; &#9472; &#9472; &#9472; &#9472; &#9496; <br>
</code>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment