Can someone please show me how to insert curly brackets on this challenge. ive tried everything ive been advised and know but still cant complete the challenge

Tell us what’s happening:

Your code so far


<style>
h2 
  (color: blue;)   
</style>
<main>
<p>Click here to view more <a href="#">cat photos</a>.</p>

<a href="#"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>

<div>
  <p>Things cats love:</p>
  <ul>
    <li>cat nip</li>
    <li>laser pointers</li>
    <li>lasagna</li>
  </ul>
  <p>Top 3 things cats hate:</p>
  <ol>
    <li>flea treatment</li>
    <li>thunder</li>
    <li>other cats</li>
  </ol>
</div>

<form action="https://freecatphotoapp.com/submit-cat-photo">
  <label><input type="radio" name="indoor-outdoor" checked> Indoor</label>
  <label><input type="radio" name="indoor-outdoor"> Outdoor</label><br>
  <label><input type="checkbox" name="personality" checked> Loving</label>
  <label><input type="checkbox" name="personality"> Lazy</label>
  <label><input type="checkbox" name="personality"> Energetic</label><br>
  <input type="text" placeholder="cat photo URL" required>
  <button type="submit">Submit</button>
</form>
</main>

Your browser information:

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

Challenge: Use CSS Selectors to Style Elements

Link to the challenge:

{}these are curly brackets

where they are depends on your keyboard. On an US keyboard it’s SHIFT + [ and SHIFT + ]

try to google it

Ive done that. No success

what’s the issue you are having?

if it’s about the curly brackets, google your keyboard to find how to write them

or you can copy and paste them

I googled but the only option I was given was to press the F10 button, it ddnt work either. I’m using a Mecer laptop and there is no symbol of the curly brackects.

Silly me. I found them…

If this happens to you again, go to https://unicode-table.com/en/ and go to Character Search to look up a keyword for example, curly brackets or any other unicode character to find out the HTML entity, encoding, copy the character, keyboard code, and more . Here is the result for curly bracket:
https://unicode-table.com/en/007B/

Thank you so much. I will surely do that

1 Like