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 Treehouse Club: CSS My First Web Page Changing Your HTML

Khalid Mahmoud
Khalid Mahmoud
1,226 Points

i did the steps but its saying wrong

hi my name is Khalid i think it's a bug i did the same steps and its saying that its wrong

Hi Khalid,

Please post your code so we can take a look at what might be going on.

Best, Cena

Khalid Mahmoud
Khalid Mahmoud
1,226 Points

thanks guys , i don't help anymore thank you very much

1 Answer

Like Cena said without seeing your code it hard to tell you wants going wrong. Here is some passing code to compare with though.

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <title>All About Joy's Page</title>
    <link href='http://fonts.googleapis.com/css?family=Open+Sans' rel="stylesheet" type="text/css">
    <link href="style.css" rel="stylesheet">
  </head>   
  <body> 
    <img src="sam.jpg" alt="Sam">

    <h1>Don</h1>

    <h2>Web Developer</h2>

    <h3>Seattle</h3>

    <h4>What I do:</h4>
       <p>I'm a teacher at Treehouse, but you should write in what you do here!</p>

    <h4>What I enjoy doing:</h4>  
      <p>When I'm not writing code, I like to surf and play music. Your turn, write in something that makes you happy, or things you like to do in your free time.</p>

  </body>
</html>