Which CSS color is most like a sky-colored blue?

Question 33 options:

rgb(250, 80, 0)

rgb(80, 250, 0)

rgb(0, 80, 250)

rgb(50, 50, 50)
Question 34 (1 point)

Which CSS code colors a web page's background yellow?
Question 34 options:

h1 { background-color : yellow; }

color page background yellow

p { background-color : yellow; }

body { background-color : yellow; }
Question 35 (1 point)

Which CSS color is a shade of gray?
Question 35 options:

rgb(100, 0, 100)

rgb(0, 100, 100)

rgb(100, 100, 0)

rgb(100, 100, 100)
Question 36 (1 point)

Javascript is a programming language that can be embedded in HTML files and can run in a browser. Where does Javascript code typically reside within an HTML file?
Question 36 options:

<p>Here</p>

<java>Here</java>

rgb(Here)

<script>Here</script>

1 answer

Here are the answers to your questions:

Question 33: Which CSS color is most like a sky-colored blue?

  • Answer: rgb(0, 80, 250)

Question 34: Which CSS code colors a web page's background yellow?

  • Answer: body { background-color : yellow; }

Question 35: Which CSS color is a shade of gray?

  • Answer: rgb(100, 100, 100)

Question 36: Where does Javascript code typically reside within an HTML file?

  • Answer: <script>Here</script>