Merged post - Greeting card step 15

Tell us what’s happening:

hi, need the emogie for party face popper for the design a greting card. using a screen reader jaws for windows and the graphic or emogie is not there when i do a insert g to hear graphics. so where can i get this, up to step 15. marvin.

Your code so far

html

<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Greeting Card</title>
    <link href="styles.css" rel="stylesheet">
  </head>
  <body>
    <div class="card" id="greeting-card">
      <h1>Happy Birthday!</h1>

      <p class="message">
        Wishing you all the happiness and joy on your special day!
      </p>

      <div class="card-links">
        <a href="#send" class="send-link">Send Card</a>
        <a href="#share" class="share-link">Share on Social Media</a>
      </div>
  	</div>

  <section id="send">
    <h2>Sending your card...</h2>
    <p>Card successfully sent to your recipient!</p>
  </section>

  <section id="share">
    <h2>Sharing your card...</h2>
    <p>Your card was shared on social media!</p>
  </section>

  </body>
</html>

css

/* file: styles.css */

/* User Editable Region */

    body {
        font-family: Arial, sans-serif;
        padding: 40px;
        text-align: center;
        background-color: brown;
    }

    .card {
    background-color: white;
    max-width: 400px;
    padding: 40px;
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
    box-shadow: 0px 4px 8px gray;
    transition: transform 0.3s, background-color 0.3s ease;
    }
    
    .card:hover {
        background-color: khaki; 
            transform: scale(1.1);
    }

    h1:: before {
        content: "🥳"; 
    }



/* User Editable Region */

Your browser information:

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

Challenge Information:

Design a Greeting Card - Step 15

hi. doing the design a greeting card workshop. totally blind and use jaws for windows. so where can i grab the emobie. to then put in the stylesheet code. did use my jaws navigation web keys and use insert g for graphics. or is the emobie an invisible graphic, which my screen reader cannot find or do i just then go to emogies in windows 11 and search for that. please advice. up to step 15.
marvin.

Hi. The tests need to be exact including spacing.

Have a look at the instructions again for the selector to add and compare it to your selector.

The instructions ask you to note there is a space after the emoji. Have a look at your emoji value again.

Tell us what’s happening:

hi, need the emogie for party face popper for the design a greting card. using a screen reader jaws for windows and the graphic or emogie is not there when i do a insert g to hear graphics. so where can i get this, up to step 15. marvin.

Your code so far

html

<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Greeting Card</title>
    <link href="styles.css" rel="stylesheet">
  </head>
  <body>
    <div class="card" id="greeting-card">
      <h1>Happy Birthday!</h1>

      <p class="message">
        Wishing you all the happiness and joy on your special day!
      </p>

      <div class="card-links">
        <a href="#send" class="send-link">Send Card</a>
        <a href="#share" class="share-link">Share on Social Media</a>
      </div>
  	</div>

  <section id="send">
    <h2>Sending your card...</h2>
    <p>Card successfully sent to your recipient!</p>
  </section>

  <section id="share">
    <h2>Sharing your card...</h2>
    <p>Your card was shared on social media!</p>
  </section>

  </body>
</html>

css

/* file: styles.css */

/* User Editable Region */

    body {
        font-family: Arial, sans-serif;
        padding: 40px;
        text-align: center;
        background-color: brown;
    }

    .card {
    background-color: white;
    max-width: 400px;
    padding: 40px;
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
    box-shadow: 0px 4px 8px gray;
    transition: transform 0.3s, background-color 0.3s ease;
    }
    
    .card:hover {
        background-color: khaki; 
            transform: scale(1.1);
    }

    h1:: before {
        content: "🥳"; 
    }



/* User Editable Region */

Your browser information:

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

Challenge Information:

Design a Greeting Card - Step 15

hi. doing the design a greeting card workshop. totally blind and use jaws for windows. so where can i grab the emobie. to then put in the stylesheet code. did use my jaws navigation web keys and use insert g for graphics. or is the emobie an invisible graphic, which my screen reader cannot find or do i just then go to emogies in windows 11 and search for that. please advice. up to step 15.
marvin.

you already got a response, please review the response you received