Skip to content

Instantly share code, notes, and snippets.

@Ellyria
Created June 11, 2017 15:29
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 Ellyria/6dbf4694a1144dabd7a6982be0382fef to your computer and use it in GitHub Desktop.
Save Ellyria/6dbf4694a1144dabd7a6982be0382fef to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<!-- ================================================== -->
<title>Google Fonts Example</title>
<!-- ================================================== -->
<meta charset="utf-8" />
<!-- ================================================== -->
<!-- Optional support for older (IE9 or older) Microsoft browsers: -->
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<!-- ================================================== -->
<!-- Automatically scale contents to viewport size and orientation: -->
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- ================================================== -->
<!-- Google Barrio font -->
<link href="https://fonts.googleapis.com/css?family=Barrio" rel="stylesheet" type="text/css">
<!-- Google Lobster font -->
<link href="https://fonts.googleapis.com/css?family=Lobster" rel="stylesheet" type="text/css">
<!-- Google Raleway font -->
<link href="https://fonts.googleapis.com/css?family=Raleway" rel="stylesheet" type="text/css">
<style>
.barrio {
font-family: 'Barrio', cursive;
}
.lobster {
font-family: 'Lobster', serif;
}
.raleway {
font-family: 'Raleway', serif;
}
</style>
</head>
<body>
<p class="barrio">This is a snippet of Google Barrio font.</p>
<p class="lobster">This is a snippet of Google Lobster font.</p>
<p class="raleway">This is a snippet of Google Raleway font.</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment