Skip to content

Instantly share code, notes, and snippets.

@xjamundx
Created April 18, 2012 15:28
Show Gist options
  • Select an option

  • Save xjamundx/2414341 to your computer and use it in GitHub Desktop.

Select an option

Save xjamundx/2414341 to your computer and use it in GitHub Desktop.
Weird Font CSS Find
<!doctype html>
<html lang="en">
<head>
<style>
body {
font-face: Sans-Serif;
}
h1 {
font-face: "Fake-Font";
}
</stye>
</head>
<body>
<h1>I'm Actually Times!?!?!?</h1>
<p>When a specific fallback font isn't declared, the browsers just use the default system font.</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment