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

HTML

han lee
han lee
1,088 Points

No border as well as it's not being centered

Spelling, as well as every little hyphen and detail, is the same but it won't load up the same way as it does in the video.

I have the snapshots but I don't know how to post it up.

2 Answers

If you can't post an attachment, just paste the code into your question (or in a comment). It would be handy to also know which video you were viewing to know how it's supposed to look, but having the code may give us enough to figure out where the error is. Also, when you're posting code, it makes it easier to read if you put a new line with 3 backticks before and after the code, which will tell the markdown to put it in a code block. The backtick is the character that looks kind of like a single quote, but slanted the wrong way ( ` ), and is in the upper left portion of the keyboard [on US keyboards], left of the number 1, on the same key as the tilde (~). To show the difference, here is code that has 3 backticks (```) on the line before and after it:

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>HTML Tables</title>
  </head>
  <body>
    <table>
      <tr>
        <td>Name</td>
        <td>Job</td>
      </tr>
      <tr>
        <td>Bob</td>
        <td>Artist</td>
      </tr>
    </table>
  </body>
</html>

And here is the same code without the 3 backticks before and after: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>HTML Tables</title> </head> <body> <table> <tr> <td>Name</td> <td>Job</td> </tr> <tr> <td>Bob</td> <td>Artist</td> </tr> </table> </body> </html>