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 Use HTML Elements

youssef elmaraghy
youssef elmaraghy
140 Points

<head> < meta charset ="uft-8"> Question,,remember to adMeta tag to head? I thought i did that already ?

<html>

<head> < meta charset ="uft-8"> <title> Designed by me </title> </head>

<BODY>

<header>
    <h1>  i AM AT STARBUCKS</h1>
    <h2> fuck it </h2>

  </header>
index.html
<!Doctype html>
<html>

<head>
  < meta charset ="uft-8">
    <title> Designed by me </title>
  </head>


  <BODY> 

    <header>
        <h1>  i AM AT STARBUCKS</h1>
        <h2> fuck it </h2>

      </header>
    <section> 
           <p>  all the pictures will be here</p>
    </section>
    <footer> 
    <p>&copy; youssef 2014 </>
    </footer>

</BODY>

</html>

2 Answers

Try it without the space before the M in meta.

Stone Preston
Stone Preston
42,016 Points

dont put a space after the opening < on the meta tag. also its utf-8 not uft-8

<head>
    <meta charset="utf-8">
  </head>