TypeSource

@tobiasahlin

The Elements of

HTML & CSS

Lato Thin Italic

View Google Font

Grumpy wizards make toxic brew for the evil Queen and Jack.

abcdefghijklmnopqrstuvwxyz

ABCDEFGHIJKLMNOPQRSTUVWXYZ

123456789 !?:%;&_/"()’[]'$£@”

Lato Thin

View Google Font

Grumpy wizards make toxic brew for the evil Queen and Jack.

abcdefghijklmnopqrstuvwxyz

ABCDEFGHIJKLMNOPQRSTUVWXYZ

123456789 !?:%;&_/"()’[]'$£@”

HTML & CSS for this example

<!-- Include in <head> to load fonts from Google -->
<link href='https://fonts.googleapis.com/css?family=Lato:100italic' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Lato:100' rel='stylesheet' type='text/css'>
<!-- Typography -->
<div class="tehc">
  <h1 class="tehc-r1">The Elements of</h1>
  <h1 class="tehc-r2">HTML &amp; CSS</h1>
</div>

<style type="text/css">
.tehc {
  color: #fff;
  text-align: center;
  background-color: #87c057;
  font-family: Lato, sans-serif;
  font-weight: 100;
  padding-top: 10em;
  padding-bottom: 11em;
}

.tehc-r1 {
  font-size: 4em;
  font-weight: 100;
  line-height: 1em;
  font-style: italic;
  color: #2c5608;
}

.tehc-r2 {
  font-size: 10em;
  line-height: 1em;
  font-weight: 100;
}
</style>
Browse more examples