How To Set Background Color In HTML? - Tutorialspoint
Maybe your like
Setting the background color of a web page or an element on the web page, enable us to create unique layouts for the web page.
To set the background color in HTML, use the style attribute, with the CSS property background-color inside the body tag of the HTML document.
HTML5 do not support the <body> tag bgcolor attribute, so the CSS style is used to add background color. The bgcolor attribute deprecated in HTML5.
We can change the background color by overriding the property with the other property.
Syntax
<body style="background-color:aquamarine;">Example
Following is the example program to set background color in HTML.
<!DOCTYPE html> <html> <body style="background-color:aquamarine;"> <h1>HTML Articles</h1> </body> </html>We can change the background color by overriding the property with the other color.
Example
Following is the example program to set background color in HTML.
<!DOCTYPE html> <html> <body style="background-color:khaki;"> <h1>HTML Articles</h1> </body> </html>We can specify the background color with RGB value. RGB value indicates its red, green, and blue color intensity. Each intensity value is on a scale of 0 to 255, or in hexadecimal from 00 to FF.
Example
Following is the example program to set background color with RGB value.
<!DOCTYPE html> <html> <head> <style> body { background-color: rgb(20,30, 1); } </style> <h1>HTML Articles</h1> </head> <body> </body> </html>Tag » Colors Html5 Change
-
HTML 5 Tutorial: Set Or Change HTML Background Color
-
How To Add & Change Background Color In HTML - HubSpot Blog
-
- HTML (HyperText Markup Language) | MDN"> - HTML (HyperText Markup Language) | MDN
-
In HTML, How Do I Change The Color Of The Text And Background Of A ...
-
How To Change The HTML Font Color - Kinsta
-
How To Change Text Color In Html - Javatpoint
-
HTML Colors - W3Schools
-
HTML Font Style – How To Change Text Color And Size With An ...
-
How To Change The Font Type, Size, And Color On A Web Page
-
How To Change Colors In HTML - Stack Overflow
-
Change Text Color In HTML | HTML5 Tutorial - YouTube
-
HTML Background Color Tutorial – How To Change A Div ...
-
HTML Text Color - HTML Color Codes
-
How To Change The Background Color Of A Web Page Using ...