Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trial
Rocco Sorma
Courses Plus Student 2,156 PointsI cannot get my browser to apply Nunito font type. My code for the html and style documents are below
HTML:
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>Smells Like Bakin' Cupcake Company</title>
<link rel="stylesheet" href="css/normalize.css" type="text/css" media="screen">
<link rel="stylesheet" href="css/grid.css" type="text/css" media="screen">
<link href='http://fonts.googleapis.com/css?family=Nunito' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/style.css" type="text/css" media="screen">
</head>
CSS:
body {
font-family: 'Nunito', sans-serif;
}
1 Answer
Brendan Baxter
471 PointsWhich browser are you using?
Rocco Sorma
Courses Plus Student 2,156 PointsRocco Sorma
Courses Plus Student 2,156 PointsI'm using Google Chrome
Twiz T
12,588 PointsTwiz T
12,588 PointsTry using the inspector tool built into chrome. Right click on the word you expect to appear as nunito and click "inspect element" you can then see what font is being rendered by the browser.
Maybe you have another declaration overriding the nunito one, but the first step would be to inspect the element.