Q1. Given the following CSS code, what would be the font color for H1 and H3?
h1, h2, h3 {font-family: Verdana; color: red}
h1, h3 {font-weight: bold; color: pink}
Q2. Given the following HTML code segment:
<h3>Line1</h3>
What would be the font color for both "Line 1" and "Line 2" using the CSS code:
h3 > em {font-weight: bold; color: green}
Q3. Given the following HTML code segment:
What would be the font size and color of "Item1", "Item2", "Item3", and "Item4" using the CSS code:
b + i {font-size: 20pt; color: red}