Horje
how to change paragraph text color to orange - css Code Example
how to change paragraph text color to orange - css
p{
  color: orange;
}
how to change paragraph text color to orange - css
p{
  color: #FFA500;
}
how to change paragraph text color to orange - css
.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>*/




Css

Related
where css Code Example where css Code Example
how to align items in css Code Example how to align items in css Code Example
online minifier api Code Example online minifier api Code Example
center a cpontent css Code Example center a cpontent css Code Example
ghana Code Example ghana Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11