Created
December 20, 2016 19:21
-
-
Save joemsak/23e49a29da412213116b7a59e21a7a17 to your computer and use it in GitHub Desktop.
This file contains hidden or 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> | |
<head> | |
<link href="https://fonts.googleapis.com/css?family=Nunito+Sans" rel="stylesheet"> | |
<title>Change the font!!!!!</title> | |
<style type="text/css"> | |
html { | |
font-family: 'Nunito Sans', sans-serif; | |
} | |
</style> | |
</head> | |
<body> | |
<h1>All fonts will be Nunito Sans!</h1> | |
<p>Even paragraphs!</p> | |
<p><strong>Even bold words!</strong></p> | |
<ul> | |
<li>Even</li> | |
<li>list items</li> | |
<li>in an</li> | |
<li>unordered list!</li> | |
</ul> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment