Last active
December 30, 2015 06:09
-
-
Save BDFife/7787524 to your computer and use it in GitHub Desktop.
Test code that demonstrates iOS Monospace with Courier and Courier New
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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> | |
┌ ─ ─ ─ ─ ─ ─ ─ ┐ <br> | |
a a a a a a a a a <br> | |
│ · · · · · · · │ <br> | |
@ @ @ @ @ @ @ @ @ <br> | |
│ · · · · · · · │ <br> | |
│ · · · · · · · │ <br> | |
│ │ <br> | |
└ ─ ─ ─ ─ ─ ─ ─ ┘ <br> | |
</code> | |
<div class="new"> | |
<p> "Courier New" Font:</p> | |
<code> | |
┌ ─ ─ ─ ─ ─ ─ ─ ┐ <br> | |
a a a a a a a a a <br> | |
│ · · · · · · · │ <br> | |
@ @ @ @ @ @ @ @ @ <br> | |
│ · · · · · · · │ <br> | |
│ · · · · · · · │ <br> | |
│ │ <br> | |
└ ─ ─ ─ ─ ─ ─ ─ ┘ <br> | |
</code> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment