Step 29. il valore url(https://.....fe/beans.jpg). non capisco come aggiungere la parte con il link dopo background-image

Dicci cosa sta succedendo
Descrivi qui il tuo problema in dettaglio.

  **Il tuo codice fino ad ora**
/* file: index.html */
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>Cafe Menu</title>
  <link href="styles.css" rel="stylesheet"/>
</head>
<body>
  <div class="menu">
    <header>
      <h1>CAMPER CAFE</h1>
      <p>Est. 2020</p>
    </header>
    <main>
      <section>
        <h2>Coffee</h2>
      </section>
    </main>
  </div>
</body>
<html>
/* file: styles.css */
body {
body {
background-image: 
}
}

h1, h2, p {
text-align: center;
}

.menu {
width: 80%;
background-color: burlywood;
margin-left: auto;
margin-right: auto;
}
  **Informazioni del tuo browser:**

Lo user agent รจ: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36

Sfida: Step 29

Link alla sfida:

beh, innanzitutto scrivendo il selettore una sola volta
poi come valore hai bisogno di usare url
in questo modo:

url("https://global.discourse-cdn.com/freecodecamp/original/3X/4/c/4c06248fcb7353707abcde9f10fc43a5fb6748db.svg")

sia le parentesi che le virgolette sono importanti e non vanno tralasciate

1 Like