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

My language letters.

Why I cant see my language letter in my name. I tride a lot of fonts but the letter don't show up. Google font show me thant "open sans" font have it. So where is the problem

<!DOCTYPE html>
<html>
  <head>

    <meta charset:"utf-8">
    <title>Julius D | Designer</title>
    <link rel="stylesheet" href="css/normalize.css">
    <link href='https://fonts.googleapis.com/css?family=Open+Sans:400,400italic,700,700italic,800|Exo:800' rel='stylesheet' type='text/css'>
    <link rel="stylesheet" href="css/style.css">


  </head>

  <body>

    <header>
      <a href ="idex.hmtl" id="logo">
        <h1>Julius Danilevičius</h1>
        <h2>Designer</h2>
      </a>
    </header>
  </body>
</html>

You have

<meta charset:"utf-8">

Change it to

<meta charset="utf-8">

3 Answers

Hi Julius!

You must use code like " & copy ; " for the ©-sign.

Your c is : " & # 2 6 9 ; "

http://stackoverflow.com/questions/9219271/how-to-make-the-website-show-signs-like-č-and-ć

Hope it helps!

I am not sure if this is the problem, but your meta charset tag is messed up. It should be: meta charset = "utf-8".

All of you were right! :D I didn't notice this part of code..
Thank you all !! Keep coding!! :}