Home

Published

- 1 min read

how to change paragraph text color to orange - css

img of how to change paragraph text color to orange - css

The solution for this is noted below

how to change paragraph text color to orange - css

Solution

   .class {
	color: #ffa500;
}

/*In the Html sheet, your paragraph should have the class 'class', or what ever
you want to call it(you can change 'class' to what you want). Just make sure 
the name is exactly the sameas what you type in css.*/

/*The same can be done by adding 'orange' instead of the hex - #FFA500.*/

/*This is how the html would look
<p class = "class">Orange</p>*/

Try other methods by searching on the site. That is if this doesn’t work