Step 78 camper cafe

Tell us what’s happening:
this is very confusing. the hint is saying the opposite of the guide thing.

Step 78

Next you are going to be styling the footer element. To keep the CSS organized, add a comment at the end of styles.css with the text FOOTER .
the hint:
You should have a CSS comment with the text FOOTER

Your code so far

body {

  background-image: url(https://cdn.freecodecamp.org/curriculum/css-cafe/beans.jpg);

  font-family: sans-serif;

  padding: 20px;

}

h1 {

  font-size: 40px;

}

h2 {

  font-size: 30px;

}

.established {

  font-style: italic;

}

h1, h2, p {

  text-align: center;

}

.menu {

  width: 80%;

  background-color: burlywood;

  margin-left: auto;

  margin-right: auto;

  padding: 20px;

  max-width: 500px;

}

hr {

  height: 2px;

  background-color: brown;

  border-color: brown;

}

.bottom-line {

  margin-top: 25px;

}

h1, h2 {

  font-family: Impact, serif;

}

.item p {

  display: inline-block;

  margin-top: 5px;

  margin-bottom: 5px;

  font-size: 18px;  

}

.flavor, .dessert {

  text-align: left;

  width: 75%;

}

.price {

  text-align: right;

  width: 25%

}

footer {

  styles.css: FOOTER;

}

WARNING

The challenge seed code and/or your solution exceeded the maximum length we can port over from the challenge.

You will need to take an additional step here so the code you wrote presents in an easy to read format.

Please copy/paste all the editor code showing in the challenge from where you just linked.

Replace these two sentences with your copied code.
Please leave the ``` line above and the ``` line below,
because they allow your code to properly format in the post.

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36 Edg/101.0.1210.53

Challenge: Step 78

Link to the challenge:

Hi @zakman2010 ,

When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks.

```
Your code goes here
```

You can also use the “preformatted text” tool in the editor ( </> ) to add backticks around text.


You will be styling the footer element in the next steps.

For now, you should only add the comment.

I am not familiar whith a coment

To comment out in HTML,
you simply insert information between <!-- and --> tags :

<!-- This is an HTML comment -->

To comment out in CSS,
you insert information between /* and */ :

/* This is a CSS comment */
3 Likes

commenting on CSS is different than doing on html
to do on css file u use /* comment here */

also… googling is a must skill any programmer should learn :slight_smile:
even advanced/seniors programmers google stuff

1 Like

Ooops ! I forgot it was CSS you’re asking about.

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