COLOR IN CSS WITH EXAMPLE
how to link css to html
link rel="stylesheet" type="text/css" href="color.css"
href=" " this part is very important
your file name is here
.css is very important
TYPES 1 CSS PART
h1 {
color:
}
h4 {
color:
}
li {
color:
}
TYPES 2 CSS PART
h1 {
color: rgb();
}
h4 {
color: rgb();
}
li {
color: rgb();
}
TYPES 3 CSS PART
h1 {
color: rgba();
}
h4 {
color: rgba();
}
li {
color: rgba();
}