Computer Science, asked by kajalnishad28, 4 months ago

write the html code to display country name in red color​

Answers

Answered by bharatjha01
4

Answer:

Source Code

<p style="color:red;">Red text</p>

Result

Red text

Answered by pooja9070
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