Complete the code statements.
1. To set the colour of the text to yellow : style = "_________________ : yellow ;"
Answers
Answered by
9
Answer:
☝️ this is your answer
I hope this will help you please mark me brain list
Attachments:
Answered by
0
QUESTION:-
Complete the code statements.
1. To set the colour of the text to yellow : style = "_________________ : yellow ;"
ANSWER:-
- To set the colour of the text to yellow: style = " color: yellow ;"
- color is the answer
EXPLANATION:-
- HTML colour codes are hexadecimal triplets that represent the colours red, green, and blue #RRGGBB.
- These HTML colour codes can alter the colour of the background, text, and tables on a web page. They can as well testimonial precise colours in photo editing procedures like Adobe Photoshop.
- HTML colours are interpreted with predefined colour names, or with the values of RGB, HEX, HSL, RGBA, or HSLA.
- Example of color code in HTML
- <p style="color:#FFF00">Your text here</p>
- Example of using W3C color name in HTML
- <p style="color:yellow">Your text here</p>
- Example of CSS code
- <style> p { color: #FFF00; } </style>
#SPJ2
Similar questions