Computer Science, asked by parry8111, 1 year ago

In what ways can the value for color be specified in html

Answers

Answered by BrainboxParth
0
there are two ways-
1) Directly specify the color,eg.-
<style>
table,td,tr {
color=purple
}
</style>
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
2) Use RGB (red,green, blue)
<style>
table,td,tr {
color: RGB="200,0,200"
}
</style>
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
(*the second example will give the colour purple)
Similar questions