Skip to content

Instantly share code, notes, and snippets.

@apexdodge
Last active November 24, 2020 12:54
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 apexdodge/f2c0acc1f3c10159e6c1114685b5eb42 to your computer and use it in GitHub Desktop.
Save apexdodge/f2c0acc1f3c10159e6c1114685b5eb42 to your computer and use it in GitHub Desktop.
HTML - Testing Different System Fonts
<html lang="en">
<body>
<p>Hello World, no font family, defaults to Times New Roman</p>
<p style="font-family:Times New Roman;">Hello World, Times New Roman</p>
<p style="font-family:Arial;">Hello World, Arial</p>
<p style="font-family:Courier;">Hello World, Courier</p>
<p style="font-family:Verdana;">Hello World, Verdana</p>
<p style="font-family:Tahoma;">Hello World, Tahoma</p>
<p style="font-family:Arial Black;">Hello World, Arial Black</p>
<p style="font-family:Comic Sans MS;">Hello World, Comic Sans MS</p>
<p style="font-family:Georgia;">Hello World, Georgia</p>
<p style="font-family:Impact;">Hello World, Impact</p>
<p style="font-family:Palatino;">Hello World, Palatino</p>
<p style="font-family:Bookman;">Hello World, Bookman</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment