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

Cecil Quist
2,851 Pointsstyle type
why didn't we use "type="text/css" in the link tag? i.e. <link rel="stylesheet" type="text/css" href="css/">
2 Answers

Gareth Redfern
36,217 PointsThis is optional in the html5 spec, so you don't have to use it. See http://diveintohtml5.info/semantics.html#rel-stylesheet for more info.
One small optimization you can make in HTML5 is to drop the type attribute. Thereโs only one stylesheet language for the web, CSS, so thatโs the default value for the type attribute. This works in all browsers.

Cecil Quist
2,851 PointsTHANKS