9. Help please

<PLEASE USE THIS TEMPLATE TO HELP YOU CREATE A GREAT POST!>

<Below this line, add a link to the EXACT exercise that you are stuck at.>

<Below this line, in what way does your code behave incorrectly? Include ALL error messages.>

``` Result

Introduction

Classes and IDs in CSS

Classes and IDs are super easy in CSS. You're using them right now!

Regular HTML Selectors

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>

STYLESHEET below

.intro{
color:#883C3A;}

.standout{
color:#F7AC5F;
font-family:Verdana;}

<do not remove the three backticks above>

when you have a paragraph (or heading, doesn’t matter):

<p>example</p>

you can add the style attribute to the existing opening tag:

<p id="example">example</p>

also, make id lowercase.

2 Likes

At first do what @stetim94 said
also we don’t select an id with . .we use . for class.To select an id use #

#intro{
    color:#883C3A;
}
1 Like

ok so thank you for that but it still says its wrong

ok so i realized my problem was instead of putting “id” for the first “h3” and “p” i needed to put class

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.