Created
June 11, 2017 15:29
-
-
Save Ellyria/6dbf4694a1144dabd7a6982be0382fef to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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