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

Theresa Richards
Theresa Richards
181 Points

View Not showing

I'm in the middle of Create the Content Containers and around the half way mark (i cant see it right now so estimate) it asks us to add the © info, then save and view. My view never changes and I've got the code exact I believe. I'm using Chrome Version 35.0.1916.153 m.

Is there something I missed I cant find any reference for this problem?

Thank you

7 Answers

Theresa Richards
Theresa Richards
181 Points

Its gotta be Chrome then...sheesh. Let me play with this crap and see what I can do. I'll dump the caches real quick.

If you were able to include your code, I could better answer your question. You can do that by wrapping your code with 3 backticks (```) on the line before and after. If you specify the language after the first set of backticks, that'll help with syntax highlighting. Here's an example.

    ```html
    <p>Add your code here</p>
    ```
Theresa Richards
Theresa Richards
181 Points
<!DOCTYPE html>
<html>
  <head>
      <meta charset="utf-8">
      <title>Theresa Richards | Application Designer</title>
   </head>
   <body>
       <header>
          <h1>Theresa Richards</h1>
          <h2>Application Designer</h2>
       </header>
       <section>
          <p>Gallery will go here.</p>
      </section>
      <footer>
         <p>&copy; 2014 Theresa Richards</p>
      </footer>
   </body>
</html>
Theresa Richards
Theresa Richards
181 Points

I know this is baby stuff sorry, btw how do you copy and paste from workspaces?

Good work, you don't really need those <p> tags, they were just in my example. I'm not sure if you can reference your workspace, but copying and pasting it is one way to do it.

I took out the <p> tag, then copied and pasted your code in a new workspace, and when I view it, everything seems to be there. Did you say you were having trouble getting the &copy; symbol to show up?

Theresa Richards
Theresa Richards
181 Points

No I cant see anything but the <h1> Value "Theresa Richards" Is all that shows on the view page. :) thank you for your help btw!

Theresa Richards
Theresa Richards
181 Points

My window for Workspaces comes up in another window with no options to copy/paste in any of the menus so I had to type it out long hand.

Theresa Richards
Theresa Richards
181 Points

That did it. Sorry I should have checked that first.

No problem, glad you got it working! By the way, if no menus are available to cut/copy/paste, the keyboard shortcuts are always usable. cmd-x, cmd-c, andcmd-v`. Glad things worked out!

Theresa Richards
Theresa Richards
181 Points

I did, thank you very kindly for your help and your time.