
Douglas Middleton
1,233 PointsIn the HTML file, give the h1 element the class main-heading. I do not understand this, help.
help
<!DOCTYPE html>
<html>
<head>
<title>Lake Tahoe</title>
<link rel="stylesheet" href="page.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class-"main-heading>
<span>Journey through the Sierra Nevada Mountains</span>
<h1 class="main-heading"> Lake Tahoe, California</h1>
</header>
<p>
Lake Tahoe is one of the most breathtaking attractions located in California. It's home to a number of ski resorts, summer outdoor recreation, and tourist attractions. Snow and skiing are a significant part of the area's reputation.
</p>
<a href="#">Find out more</a>
<div>
<h2>Check out all the Wildlife</h2>
<p>
As spawning season approaches, the fish acquire a humpback and protuberant jaw. After spawning, they die and their carcasses provide a feast for gatherings of mink, bears, and Bald eagles.
</p>
<a href="#">See the Wildlife</a>
</div>
</body>
</html>
/* Complete the challenge by writing CSS below */
}
2 Answers

Richard Verbraak
7,718 PointsYou're doing fine!
You gave the h1 the correct class but you also gave the header a class as well, albeit with a typo (you used - instead of = ) and it missed a " .
The header doesn't need a class so you can remove that part and keep the <h1 class = "main-heading">.
Good luck man. Keep at it!

Douglas Middleton
1,233 PointsRichard, thank you for your help..
Doug