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 trialDavid Peraza
1,929 PointsWrite an Html doctype
I keep typing the right code but for some reason keeps telling me Bummer! Make sure you define the doctype
5 Answers
Justin Horner
Treehouse Guest TeacherHello David,
If you would, please provide the code that you are submitting so we can get a better understanding of the problem. For a quick reference to using HTML doctypes check this out.
I hope this helps.
Kazimierz Matan
13,257 PointsBelow is an example. Your doctype declaration should always be the first piece of code in your html document.
<!DOCTYPE html>
<html>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>
Ricardo Hill-Henry
38,442 Points<!DOCTYPE html> should work fine, there's also a few other variations of Doctypes that specify the version of HTML you're using.
Also, I recommend https://developer.mozilla.org/en-US/ over w3schools. w3schools is a bit buggy, and can teach some bad habits.
Jonathan Grieve
Treehouse Moderator 91,253 PointsAs an aside I often write my html5 doctyype as html
<!doctype html>
rather than html
<!DOCTYPE html>
. The former doesnt; seem to work on treehouse but I don't see that it matters which case you use to write your elements.
Krista Smyth
Courses Plus Student 11,784 PointsYour HTML code sits inside the "body" of the HTML document . Like this (copied from http://www.w3schools.com/html/.....
<!DOCTYPE html> <html> <body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body> </html>
Bookmark the website: www.w3schools.com. I have found it an extraordinary reference, especially when I get stuck.
Krista Smyth
Courses Plus Student 11,784 PointsIt didn't copy properly: <!DOCTYPE html> <html> <body>
Your code here
</body> </html>