Posts

Showing posts from February 13, 2019

How to type code css background color

 The css background   color  are used to defines the background  effects for elements , Css background properties   Background-color Background-Image Background-repeat Background-Attachement Background-POSITION  BACKGROUND CODE <!Doctype html> <html> <head> Body { Background:-color:Lightblue; } </style> </head> <H1> Hello!</h1> </Body> </Html> Body { Background:-color:Lightblue; } Hello!

Css colors code

Colors are specified using predefined color names or  Rgb HEX NSL RGBA HSCA NSL     Looking here  css codeing  <!Doctype html> <html> <head> <body> <style> <H1 style="background-color:orange;"> Orange</h1> <h2 style ="background-color:Blue;"> Blue</h2> <H3 style="Background -color:black;"> </h3> <h4 style=background-color:Pink;"> Pink</h4> </style> </head> </body> </html>