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 How to Make a Website HTML First Create the Content Containers

Doctype of HTML

I am tracking the videos and working the "launch workspace" at the same time. When it is time to come preview, It only shows my name in blue. Nicks website shows his name in black and the year of copyright.

James Barnett
James Barnett
39,199 Points

It's hard for us to know what's causing the issue you are having if you don't show us your code. For some tips on how to do that, check out the tips for asking questions video located in the right hand sidebar.

4 Answers

Aaron Arkie
Aaron Arkie
5,345 Points

please post your code.

use the ticks next to the number one on your keyboard top left

then type html after adding 3 ticks so for example (```html) and then paste your code and lastly after the code you pasted put 3 ticks

so for example

without parentheses

(```)(html)

code block

(```)

<!DOCTYPE html>
  <head>
    <meta charset="utf-8">
    <title>Nathan Doerr | Lover</title>
  </head>
  <body>
    <header>
      <h1>NATHAN DOERR</h1>
      <h2>Designer</h2>
    </header>
    <section>
      <p>Gallery will go here.</p>
    </section>
    <footer>
      <P>&copy;| 2014 Nathan Doerr.</P>
    </footer>
  </body>

This is the code, Now when I hit "tab" for the beginning it worked. A friend of mine said it shouldnt be that easy.

Aaron Arkie
Aaron Arkie
5,345 Points

That's strange i copied and pasted you code in work space and it looks just like the instructors( name and copy write is black). I'm not exactly sure but try changing the

P's on this line to lower-case? I'm not so sure if that is a syntax error but your code worked fine for me.

 <P>&copy;| 2014 Nathan Doerr.</P>