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

Im am trying to do HTML Basics and some of the problem is highlighted in red what do I need to do?

<!DOCTYPE html> <html> <head> <title> Experience VR</title> </head>

<body> <div> <header> <h1>Experience VR</h1> <p>A simple blog about virtual reality experiences</p>

   <nav>
    <ul>
      <li><a href="#">Home</a></li>
      <li><a href="#">About</a></li>
      <li><a href="#">Articles</a></li>
      <li><a href="#">Contact</a></li>
      </ul>
    </nav>
  </header>

  <div>
    <p>Virtual Reality is becoming well known as a form of entertainment, but it's also finding
  its way into fields like education, industrial design, healthcare and so much more! </p>
  <a href="https://teamtreehouse.com/vr" target="_blank> Start Your VR Journey</a>
  </div>

<main>
<section>
    <h2>About this site</h2>
    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse vehicula metus in bibendum laoreet. Aenean libero est, egestas eu eros pretium, sodales iaculis est.</p>
</section>

    <section>
        <h2>Latest VR Articles</h2>

     <article> 
      <header>
        <h3>How Schools Use Virtual Reality to Improve Education</h3>
        <p>By: Nick Pettit</p>
      </header>
        <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus ultrices euismod turpis eget porta. Etiam nulla massa, pretium et massa nec, ornare dignissim nisi.</p>
      <a href="articles/article.html">Read more</a>
      <footer>Published: June 12,2017</footer>
      </article>

      <article>
      <header>
        <h3>The Advantages of VR Simulations</h3>
        <p>By: Author McAuthorface</p>
        </header>
        <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus ultrices euismod turpis eget porta. Etiam nulla massa, pretium et massa nec, orn.
    <a href="">Read more</a>
    <footer>Published: June 19,2017</footer>
</article>


<section>
<h2>Contact</h2>
      <p>Email us at coolvrexperience@gmail.com</p>
</section>

</main> <aside> <h3>Top VR Resources</h3> <ol> <li>Learn to create educational experiences in VR</li> <li>Virtual Reality in Entertainment<li> <li>Interact with buildings and products in VR</li> <li><a>Use VR for teleconferencing and social media</a></li> </ol>

<blockquote> "Virtual reality was once the dream of science fiction. But the internet was also once a dream, and so were computers and smartphones. The future is coming. <footer> <cite><a href="https://www.facebook.com/zuck/posts/10101319050523971">Mark Zuckerberg</a></cite> </footer>

</blockquote>

</aside>

  <footer>
  <p>&copy; 2017 Experience VR, The Blog</p>
  </footer>

</div> </body>

</html>

2 Answers

Zachary Kaufman
Zachary Kaufman
1,463 Points

You forgot the last " in your Start Your VR Journey anchor tag (target="_blank")

Thank you. Now the only thing highlighted in red is </main>, </div>, </body> and </html>

Zachary Kaufman
Zachary Kaufman
1,463 Points

When I run the code online I get an error because you don't end <section> on line 27. Besides that everything else seems to run fine