Learn CSS Colors by Building a Set of Colored Markers - Step 62

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

I don’t know what’s wrong here. help me to find out what’s wrong here .

Your code so far

/* file: index.Ext.html */
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Colored Markers</title>
    <link rel="stylesheet" href="styles.css">
  </head>
  <body>
    <h1>CSS Color Markers</h1>
    <div class="container">
      <div class="marker red">
      </div>
      <div class="marker green">
      </div>
      <div class="marker blue">
      </div>
    </div>
  </body>
</html>
/* file: styles.Ext.css */
h1 {
  text-align: center;
}

.container {
  background-color: rgb(255, 255, 255);
  padding: 10px 0;
}

.marker {
  width: 200px;
  height: 25px;
  margin: 10px auto;
}

.red {
  background: linear-gradient(180deg, rgb(122, 74, 14) 0%, rgb(245, 62, 113) 50%, rgb(162, 27, 27) 100%);
}

.green {
  background: linear-gradient(180deg, #55680D, #71F5E3);
}

.blue {
  background-color: hsl(240, 100%, 50%);
}
    

Your mobile information:

SM-P613 - Android 14 - Android SDK 34

Challenge: Learn CSS Colors by Building a Set of Colored Markers - Step 62

Link to the challenge:

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!

In your HTML comment you wrote index.Ext.html but it should just be index.html.
Same for CSS: styles.Ext.css should be styles.css.

That mismatch means the <link rel="stylesheet" href="styles.css"> can’t find the file, so your styles don’t load.

:backhand_index_pointing_right: Rename your files properly (index.html and styles.css) and it should work. :+1:

use a hex color code with the values 71 for red, F5 for green, and 3E for blue.

Take another look at what you wrote compared to the instruction.

those come from the mobile app, and they are correct, considering you can’t rename the editor files

1 Like

In the code its html.index

You tried what?

Please share your updated code.

.green {

background: linear-gradient(180deg, #55680D, #71F5E3);

}

this color does not follow the requirements, please double check the requirements

1 Like

linear-gradient(180deg, #55680D, #71F53E) This is the hint. I didnt understand what mistake i havedone .explain plz

Passes the test for me. Try to reset the step and try it again.

If it’s still not working please share the full block of code.

#71F5E3 and #71F53E are not the same color

1 Like