CSS Please help!

Hi, I’ve been doing the basics of HTML and CSS and i’m stuck, I have literally no idea where to put this piece of code,It didn’t specify!

* {
  font-family: 'Georgia', 'Times', serif;
}

a {
  color: SeaGreen;
  text-decoration: none;
}

img {
  border-radius: 100%;
}

If you know where please help.
Here’s the URL : https://www.codecademy.com/courses/learn-html-css/lessons/css-setup/exercises/style?action=lesson_resume&link_content_target=interstitial_lesson
It’s on part 2,
Here are the instructions:
2.
Copy the following code and paste it in between the opening and closing <style> tags:

* {
  font-family: 'Georgia', 'Times', serif;
}

a {
  color: SeaGreen;
  text-decoration: none;
}

img {
  border-radius: 100%;
}

Don’t worry about the details of the CSS code above just yet, you will learn more about CSS in later lessons.

I did exactly what it wanted i made, A ’ ’ And inserted that code in it.
I did all this is head, I then changed it to body. And it looks like this

please provide more information.
Lesson URL and which part of the instructions you don’t understand

1 Like

I’m only allowed to put 1 picture, So i saw it fit that i put this one.
The other one seems about right the ‘Learn More’ Text has changed to green

Can you please post your full code here so that we can see what you did?

Do the following:

  • copy your whole code and paste it here
  • select the whole code
  • click on the </> above

in between the head tags add your style tags and then between the style tags paste in the code

<head>
   <!-- add opening style tag paste in code and add closing style tag -->
</head>

You will find the head tags at the top of the page below:

<!DOCTYPE html>
<html>

Next time remember when you edit we don’t get a notification, so I wasn’t aware that you added in your code, also remember to post with the correct format as @rcodeman stated or see this post

1 Like

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