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 trialTerrell Bailey
147 PointsIm lost as to what Im supposed to be tagging
what am I doing wrong in this challenge?
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Terry Bailey Designer<title>
<head>
<body>
<header>
<head>
<h1>Terry Bailey<h/1>
<header>
<body>
<html>
3 Answers
Wayne Priestley
19,579 PointsHi Terrell,
Im not sure as you haven't said what it is you've been asked to do...
You have a few errors in your code to correct.
But taking a guess id say you have make a h1
tag in the header
In that case, you've made a slight error, it should be
<head>
<meta charset="utf-8">
<title>Terry Bailey Designer</title>
</head>
<body>
<header>
<h1>Terry Bailey</h1>
</header>
</body>
Hope this helps.
Britton Zirkle
Courses Plus Student 15,005 PointsTry the following and see if that doesn't help. You did a pretty good job, but sometimes proper indentation can help with reading the code and ensuring that closing tags are typed correctly.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Terry Bailey Designer<title>
</head>
<body>
<header>
<h1>Terry Bailey</h1>
</header>
</body>
</html>
Mikael Enarsson
7,056 PointsA few things:
- No closing tags for the html, head, title, body, or header (remember, the closing tag starts with "</"!!
- A typo in your <h1> closing tag
- A <head> opening tag inside your header