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 Responsive Web Design and Testing Website Testing

Jonthue Michel
Jonthue Michel
1,462 Points

error on W3C Markup Validation

It says that Info: The Content-Type was text/html. Using the HTML parser. Info: Using the schema for HTML with SVG 1.1, MathML 3.0, RDFa 1.1, and ITS 2.0 support. Error: Bad value http://fonts.googleapis.com/css?family=Lobster+Two:700italic|Arvo for attribute href on element link: Illegal character in query: not a URL code point. From line 7, column 3; to line 7, column 114 e.css">ā†© <link href='http://fonts.googleapis.com/css?family=Lobster+Two:700italic|Arvo' rel='stylesheet' type='text/css'>ā†© <li Syntax of URL: Any URL. For example: /hello, #canvas, or http://example.org/. Characters should be represented in NFC and spaces should be escaped as %20. Warning: Section lacks heading. Consider using h2-h6 elements to add identifying headings to all sections. From line 27, column 19; to line 27, column 27 <section>ā†©

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title> Jonthue | Designer</title>
  <link rel="stylesheet" href="CSS/normalize.css">
  <link href='http://fonts.googleapis.com/css?family=Lobster+Two:700italic|Arvo' rel='stylesheet' type='text/css'>
  <link rel="stylesheet" href="CSS/alpha.css">
    <link rel="stylesheet" href="CSS/responsive.css">
  <meta name="Viewpoint" content="width=device-width, initial-scale=1.6">
  </head>
<body>
  <header>
    <a href="index.html" id="logo">
        <h1>Jonthue Michel</h1>
        <h2>Designer</h2>
    </a>
    <nav>
      <ul>
        <li><a href ="index.html"class="selected">Portfilo</a></li>
        <li><a href="About.html">About</a></li>
        <li><a href="Contact.html">Contact</a></li>
      </ul>
    </nav>
  </header>
 <div id="wrapper">
                  <section>
                    <ul id="gallery">
                      <li>
                        <a href="img/IMG_20150505_100103.jpg">
                               <img src="img/IMG_20150505_100103.jpg" alt="">
                              <p>Taking a short of the church, Triangle SDA Mission</p>
                          </a>
                      </li>
                      <li>
                        <a href="img/IMG_20150505_100026.jpg">
                               <img src="img/IMG_20150505_100026.jpg" alt="">
                              <p>2nd shot of church</p>
                          </a>
                      </li>
                      <li>
                        <a href="img/Capture1111.PNG">
                               <img src="img/Capture1111.PNG" alt="">
                              <p>SDA logo revived 2nd verison</p>
                          </a>
                      </li>
                      <li>
                        <a href="img/portlandp1.jpg">
                               <img src="img/portlandp1.jpg" alt="">
                              <p>Taking a short ouring a walk</p>
                          </a>
                      </li>
                    </ul>
                    </section>
                    <footer> 
                      <a href ="https://www.facebook.com/jonthue.michel"><img src="img/facebook-wrap.png" alt="Facebook Logo" class="social icon"> </a>
                     <p>&copy; 2015 Jonthue Michel.</p>
                    </footer>
   </div>
  </body>
</html>

MOD: edited to format code

1 Answer

Jason Anders
MOD
Jason Anders
Treehouse Moderator 145,858 Points

Hi, Jonthue,

Please refer to the answer for this question as it will explain your error.

Keep Coding! :)