stars html changing colors?

dennismetal89

New member
im making a page for school with html, i have a code for star icons, but the cod emakes the strs blakc and i need to change the color to teal and grey stars, waht sthe code to change the stars code? remember the stras arenot an image i found i put the min as a code
 
Hi,
You can use CSS and write a class like this:
<style>
.stars{
background-color:Gray;
}
</style>
and in your html code set the attribute class of html tag equal with stars;

or set the attribute style of html tag with "background-color:Gray"
 
Hi,
You can use CSS and write a class like this:
<style>
.stars{
background-color:Gray;
}
</style>
and in your html code set the attribute class of html tag equal with stars;

or set the attribute style of html tag with "background-color:Gray"
 
Hi,
You can use CSS and write a class like this:
<style>
.stars{
background-color:Gray;
}
</style>
and in your html code set the attribute class of html tag equal with stars;

or set the attribute style of html tag with "background-color:Gray"
 
Back
Top