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!
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

Sahou Kanaan Almelhem
Courses Plus Student 15,547 Pointscan i ignore the following errors
Error: Attribute content not allowed on element meta at this point. From line 4, column 2; to line 4, column 139
↩<head>↩ <meta id="viewport" charset="UTF-8" name="viewport" content ="width=device-width, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">↩ <met
Attributes for element meta: Global attributes
name — Metadata name http-equiv — Pragma directive
content — Value of the element charset — Character encoding declaration
Warning: Consider avoiding viewport values that prevent users from resizing documents. From line 4, column 2; to line 4, column 139
↩<head>↩ <meta id="viewport" charset="UTF-8" name="viewport" content ="width=device-width, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">↩ <met
Document checking completed.
<!DOCTYPE html> <html lang="de"> <head> <meta id="viewport" charset="UTF-8" name="viewport" content ="width=device-width, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"> <meta name="google-site-verification" content="_zOtlYRcehu2yqoLd1K7ucXRRBUCTZNHh6XqcC-J-nY" /> <meta name="keywords" content="Akupunktur Heinsberg, Akupunktur in Heinsberg, traditionelle chinesische Medizin und Akupunktur in Heinsberg, Heinsberg Akupunktur, Heinsberg Praxis füt Akupunktur, Praxis in Heinsberg für Akupunktur, Praxis für chinesische Massage in Heinsberg, Heinsberg chinesische Massage, Heinsberg chinesische Medizin"> <meta name="description" content="Praxis für Chinesische Medizin (TCM) & Akupunktur & chinesische Massage HeilpraktikerinXiduo Wang-Minkenberg .">
<title>Akupunktur Heinsberg</title>
<link rel="stylesheet" href="./styles/normalize.css" />
<link rel="stylesheet" href="styles/main.css" />
<link rel="stylesheet" href="styles/index.css"/>
</head>
<body>
<div id="wrapper" class="clearfix">
<header>
<a href="index.html" title="home page"><h1 id="logo">Akupunktur Heinsberg</h1> </a>
<nav id="main-nav">
<ul>
<li><a href="index.html" title="Home Page Akupunktur Heinsberg" hreflang="de" class="visited">Home</a></li>
<li> <a href="tcm-akupunktur.html" title="TCM Akupunktur Heinsberg" hreflang="de">TCM/Akupunktur</a></li>
<li><a href="meine-person.html" title="meine Person Akupunktur Heinsberg" hreflang="de">Meine Person</a></li>
<li><a href="therapien-preise.html" title="Therapien Preise Akupunktur Heinsberg" hreflang="de">Therapien & Preise</a></li>
<li><a href="aktuelle-informationen.html" title="Aktuelle Informationen Akupunktur Heinsberg" hreflang="de">Aktuelle Informationen</a></li>
<li><a href="massage.html" title="Massage Akupunktur Heinsberg" hreflang="de">Massage</a></li>
<li><a href="anti-aging.html" title="anti aging Akupunktur Heinberg" hreflang="de">Anti-Aging
</a></li>
<li><a href="gesundheitspakete.html" title="Gesundheitspakete" hreflang="de">Gesundheitspakete</a></li>
<li><a href="kontakt-anfahrt.html" title="Kontakt und Anfahrt" hreflang="de">Kontakt & Anfahrt</a></li>
<li><a href="patienten-feedback.html" title="Patientenfeedback" hreflang="de">Patientenfeedback (Namen geändert)</a></li>
</ul>
</nav>
</header>
<div id="main-section">
<h2 id="introduction">Herzlich Willkommen!
<br/>
Praxis<br/>
für <br/>
Chinesische Medizin (TCM) <br/>
& Akupunktur <br/>
& chinesische Massage <br/>
</h2>
<h2 id="chef-name">
Heilpraktikerin<br/>
Xiduo Wang-Minkenberg</h2>
<p>Als Heilpraktikerin wende ich traditionelle chinesische Medizin und Akupunktur an.
Mit meinem Wissen und Herzen werde ich mich für Ihre Gesundheit einsetzen.
<span>Weiterhin</span> habe ich einen Masseur, der chinesische Massagen, Wellness Massagen und
Sportmassagen anbietet.
</p>
</div>
</div>
<footer id="main-footer">
<p>©2017 Akupunktur Heinsberg</p>
</footer>
</body> </html>
2 Answers

james south
Front End Web Development Techdegree Graduate 33,271 Pointstry moving the charset=utf-8 into its own meta tag instead of combining it with the viewport meta tag.

Sahou Kanaan Almelhem
Courses Plus Student 15,547 PointsThank you very much !!