This forum is now read-only. Please use our new forums! Go to forums

0 points
Submitted by jadew67
over 10 years

CSS: Selectors (ID Error) Please Help

Step one reads “Give the h2 header an ID of “intro”. So I did that writing:

<div id="intro">
    <h2>Introduction</h2>
</div>    

I am now receiving an error reading: Oops, try again! Did you remember to add the intro ID to the h2 header?

Isn’t that what I did? What am I not seeing?

This is the full code:

<!DOCTYPE html>
<html>
    <head>
        <link type="text/css" rel="stylesheet" href="stylesheet.css"/>
        <title>Result</title>
    </head>
    <body>
        <div id="intro">
        <h2>Introduction</h2>
        </div>
        
            
        <div class="standout">
        <h3>Classes and IDs in CSS</h3>
        <p>Classes and IDs are super easy in CSS. You're using them right now!</p>
        </div>
        
        <h3>Regular HTML Selectors</h3>
        <p>If you don't bother with a class or ID, an HTML element just gets
           the regular CSS styling for that element—or the default styling if you
           don't specify any particular styling on the stylesheet.
        </p>
    </body>
</html>

Answer 5263110df10c60df87001631

0 votes

Permalink

Try removing the DIV wrapper on the H2:

<h2 id="intro">Introduction</h2>
points
Submitted by Roy
over 10 years