DONT ADD ANYTHING HERE!

<head>
    <style>
        body {
            font-family: "Segoe UI", Tahoma, sans-serif;
            text-align: left;
            color: blue;
        }

        p {
            font-style: italic;
            text-align: justify;
            color: #00ff00;
        }
    </style>
</head>
<body>
    <h1 style="font-weight:bold">This is a heading</h1>
    <p>This is a paragraph</p>
</body>

Choices

Choose Three Correct Answers

  1. The text This is a paragraph will display blue and will be italicized

    False Hover for answer
     
  2. The text This is a paragraph will display using the font "Segoe UI"

    True Hover for answer
     
  3. The text This is a paragraph will display green and will be justified

    True Hover for answer
     
  4. The text This is a heading will display blue and will be left aligned

    True Hover for answer
     
  5. The text This is a heading will be justified

    False Hover for answer
     
  6. The text This is a heading will display black and will be bolded

    False Hover for answer
     

Notes

Some properties like
  1. font-size
  2. color
  3. font-family
are inherited from the parent when the element has no value specified in itself

View Answer in Browser

References

Skillsoft module 5 CSS/HTML Question