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

IS there something wrong with my html

<!DOCTYPE html> <!-- saved from url=(0097)https://storage.googleapis.com/supplemental_media/udacityu/2730818600/bootstrap-prestructure.html --> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Gio Panotes|Web Developer </title> <link href='https://fonts.googleapis.com/css?family=Lato:100,300' rel='stylesheet' type='text/css'> <script src="jquery-2.1.4.min.js"></script> <script src="bootstrap.min.js"></script> <link rel="stylesheet" href="bootstrap.min.css"> <link rel="stylesheet" href="style.css"> </head> <body> <div class="container"> <div class="row"> <div class="col-md-6"> <img class="title-logo img-responsive" src="GP.jpg" alt="Logo"> </div> <div class="col-md-6 text-right text-uppercase"> <h1 class="title-super text-thin">Gio Panotes</h1> <h4>Front-end Ninja</h4> </div> </div> <div class="row" id="row"> <div class="col-md-4"> <h5><a href="bootstrap-prestructure.html">HOME</a></h5> </div> <div class="col-md-4"> <h5><a href="About-me.html">ABOUT-ME</a></h5> </div> <div class="col-md-4"> <h5><a href="contact.html">CONTACT</a></h5> </div> </div>
<div class="row"> <div class="col-md-12"> <hr> </div> </div> <div class="row"> <div class="col-md-12"> <img class="img-responsive" src="http://placekitten.com/g/1140/350" alt="Design Image"> </div> </div> <div class="row"> <div class="col-md-12"> <h2 class="text-muted">Featured Work</h2> </div> </div> <div> <body> <html>

2 Answers

You are missing html, head and body tags. It should be like this:

<!DOCTYPE html>
<html>
  <head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible"  content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Gio Panotes|Web Developer </title>
    <link href='https://fonts.googleapis.com/css?family=Lato:100,300' rel='stylesheet' type='text/css'>
    <script src="jquery-2.1.4.min.js"></script>
    <script src="bootstrap.min.js"></script>
    <link rel="stylesheet"  href="bootstrap.min.css"> 
    <link rel="stylesheet"  href="style.css">
  </head>

  <body>
<div class="container">
  <div class="row">
    <div class="col-md-6">
      <img class="title-logo img-responsive" src="GP.jpg" alt="Logo">
    </div>
    <div class="col-md-6 text-right text-uppercase">
      <h1 class="title-super text-thin">Gio Panotes</h1>
      <h4>Front-end Ninja</h4>
    </div>
  </div>
  <div class="row" id="row">
    <div class="col-md-4">
      <h5><a href="bootstrap-prestructure.html">HOME</a></h5>
    </div>
    <div class="col-md-4">
      <h5><a href="About-me.html">ABOUT-ME</a></h5>
    </div>
    <div class="col-md-4">
      <h5><a href="contact.html">CONTACT</a></h5>
    </div>
  </div>  
  <div class="row">
    <div class="col-md-12">
      <hr>
    </div>
  </div>
  <div class="row">
    <div class="col-md-12">
      <img class="img-responsive" src="http://placekitten.com/g/1140/350" alt="Design Image">
    </div>
  </div>
  <div class="row">
    <div class="col-md-12">
      <h2 class="text-muted">Featured Work</h2>
    </div>
  </div>
<div>

</body>
</html>

So should I event put a <section> tag on my gallery?

You should always put the <!DOCTYPE html> tag at the beginning of your code in order to tell the browser that the file you are loading is a webpage. And you should always put the closing </html> at the end of the page in order for the browser to show everything inside the html document, and to tell the browser where the html document (webpage) ends.