Learn Intermediate CSS by Building a Cat Painting - Step 3

Tell us what’s happening:
Describe your issue in detail here.

Your code so far

/* file: index.Ext.html */
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
<link rel="stylesheet" href="./styles.css">
    <title>fCC Cat Painting</title>

</head>
<body></body>
</html> 
/* file: styles.Ext.css */
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
<link rel="stylesheet" href="./styles.css">
    <title>fCC Cat Painting</title>

</head>
<body></body>
</html> 

Your mobile information:

23053RN02A - Android 14 - Android SDK 34

Challenge: Learn Intermediate CSS by Building a Cat Painting - Step 3

Link to the challenge:

1 Like

You did everything correctly, except for one thing: you seemed to have added all of your html markup to your styles.css file. You don’t need to do that. All it’s asking is for you to link to it in your html <head> element, which you did correctly. Delete everything in your styles.css file.
Hope that helps.

1 Like

Tell us what’s happening:
Describe your issue in detail here.

Your code so far

/* file: index.Ext.html */
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>fCC Cat Painting</title>
<link rel="stylesheet" href="./styles.css">
</head>
<body></body>
</html>
/* file: styles.Ext.css */

Your mobile information:

23053RN02A - Android 14 - Android SDK 34

Challenge: Learn Intermediate CSS by Building a Cat Painting - Step 3

Link to the challenge:

Please Tell us what’s happening in your own words.

Learning to describe problems is hard, but it is an important part of learning how to code.

Also, the more you say, the more we can help!

You appear to have created this post without editing the template. Please edit your post to Tell us what’s happening in your own words.
Learning to describe problems is hard, but it is an important part of learning how to code.
Also, the more you say, the more we can help!

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