write the html code to display country name in red color
Answers
Answered by
4
Answer:
Source Code
<p style="color:red;">Red text</p>
Result
Red text
Answered by
1
Explanation:
This example uses inline styles to set the text color to red (i.e. I use the style attribute against the HTML element).
...
Red Text.
Source Code Result
<p style="color:red;">Red text</p> Red text
Similar questions