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 HTML Basics Images, Text and Links Adding Images to the Page

when following along with the video I see lines of code I missed anywhere I can view full page of html example work?

I assume this why my last couple times reviewing my work I don't see the images and my links don,t seem to be working either. Is there anyone that can view my whole page of code? I made a bit of mess out of some parts of it but I don,t think it would take much to get it corrected.

You need to post your code here for viewing

<!DOCTYPE HTML> <html> <head> <header>

<title>Experience VR</title>

<body> <h1>Experience VR</h1> <p> A simple blog about VR experiences</p> <nav> <ul> <li><a href="#../..index.html">Home</a></li> <li><a href="#">About</a></li> <li><a href="#">Articles</a></li> <li><a href="#">Conact</a></li> <ul> <nav>

 <div>

<p>Virtual Reakity is becomming well know as a form of entertainment, but its also finding its way into fields like education, industrial design, healthcare and some 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. Vivamus ultrices euismod turpis eget porta. Etiam nulla massa, pretium et massa nec, ornare dignissim nisi.</p>

  <img src="img/vr-space.jpg"> alt ="user experience" title="Virtual Reality user can explore far away places and feel as though they are right in the middle of the action"
   </section>

    <sectoin>
<h2>Later VR Articles</h2>

  <article>
  <footer>
  <h3>How Schools usre Virtual Reality to imporve education </h3>
  <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> 

  </article>

<article> <h3>The Advantages of VR Simulatioin</h3> <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="article/2017/article.html">Read More</a>
</article>
</section>

  <aside>


  <h3>Top VR Resources</h3>

<ol> <li><a href="#">Learn to create educational experiences in VR</a> <li><a href="#">Virtual Reality in Entertainment</a> <li><a href="#">Interact with buildings and products in VR</a> <li><a href="#">Use VR for teleconferencing and social media</a> </ol>
</aside>

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

<footer> <p>© 2017 Experience Vr, The Blog</p> </footer> </body> </html>

I tried to add my screen shot but then it just freezes the page when I try and drag and drop it /;

1 Answer

Mike Hatch
Mike Hatch
14,940 Points

Joshua, You've made it difficult to follow along. I'd recommend editing your entire post so that it shows all the code marked up as one. And then add comments, ex: ( // Why is this not working? ), next to the bits you're confused about.