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

CSS

Michaela Babic
Michaela Babic
7,720 Points

Linking HTML and CSS

Why won't my stylesheet link up to my HTML? I think I have entered it correctly...

<!doctype html> <html> <head> <meta charset="UTF-8"> <link rel="stylesheet" href="css/main.css"> <title>Bayard, Nebraska</title> </head>

<body>

Michaela Babic
Michaela Babic
7,720 Points

Is it something in my CSS?

h4 { text-align: center; }

2 Answers

Try it in this format <link rel="stylesheet" type="text/css" href="mystyle.css"> <---make sure to type in the correct name for your css.