Skip to content

Instantly share code, notes, and snippets.

@stephenhandley
Created November 14, 2014 06:08
Show Gist options
  • Save stephenhandley/ce68c191ab36d54acf5f to your computer and use it in GitHub Desktop.
Save stephenhandley/ce68c191ab36d54acf5f to your computer and use it in GitHub Desktop.
<html>
<head>
<link href='http://fonts.googleapis.com/css?family=Lato:100,300,400,700,900,100italic,300italic,400italic,700italic,900italic' rel='stylesheet' type='text/css'>
<style>
body {
font-family : 'Lato', sans-serif;
font-size : 100px;
padding-left : 40px;
}
.thin { font-weight : 100; }
.light { font-weight : 300; }
.normal { font-weight : 400; }
.bold { font-weight : 700; }
.ultra_bold { font-weight : 900 }
.italic { font-style : italic; }
</style>
</head>
<body>
<div class="thin">Fuck Off</div>
<div class="light">Fuck Off</div>
<div class="normal">Fuck Off</div>
<div class="bold">Fuck Off</div>
<div class="ultra_bold">Fuck Off</div>
<div class="thin italic">Fuck Off</div>
<div class="light italic">Fuck Off</div>
<div class="normal italic">Fuck Off</div>
<div class="bold italic">Fuck Off</div>
<div class="ultra_bold italic">Fuck Off</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment