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

<head> <meta charset = "utf-8"> <title>OM MaheRanis Ashram</title> </head> Cannot complete challenge 4 of 6

I have added the Meta tag but the prompt keeps telling me to enter meta tag

<head> <meta charset = "utf-8"> <title>OM MaheRanis Ashram</title> </head>

index.html
<!Doctype html>
<html>

<head>
    <meta charset = "utf-8">
    <title>OM MaheRanis Ashram</title>
</head>

<body>

<header>
    <h1>Welcome to MaheRani Webspace</h1>
    <h2>Brave to step In?</h2>
</header>

<section>
    <p>This section will contain the main text</p>
</section>

<footer>&copy; 2017 Rohini Maharaj-Sharma</footer>

</body>

</html>

1 Answer

Pierre Lindgren
Pierre Lindgren
1,905 Points

Hello,

try removing the spaces around the = symbol.

<meta charset="utf-8">

Thanks, retyped the full line and it works Ok now...