
- HTML Tutorial
- HTML - Home
- HTML - Overview
- HTML - Basic Tags
- HTML - Elements
- HTML - Attributes
- HTML - Formatting
- HTML - Phrase Tags
- HTML - Meta Tags
- HTML - Comments
- HTML - Images
- HTML - Tables
- HTML - Lists
- HTML - Text Links
- HTML - Image Links
- HTML - Email Links
- HTML - Frames
- HTML - Iframes
- HTML - Blocks
- HTML - Backgrounds
- HTML - Colors
- HTML - Fonts
- HTML - Forms
- HTML - Embed Multimedia
- HTML - Marquees
- HTML - Header
- HTML - Style Sheet
- HTML - Javascript
- HTML - Layouts
- HTML References
- HTML - Tags Reference
- HTML - Attributes Reference
- HTML - Events Reference
- HTML - Fonts Reference
- HTML - ASCII Codes
- ASCII Table Lookup
- HTML - Color Names
- HTML - Entities
- HTML - Fonts Ref
- HTML - Events Ref
- MIME Media Types
- HTML - URL Encoding
- Language ISO Codes
- HTML - Character Encodings
- HTML - Deprecated Tags
How to set background color in HTML?
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>
- Related Articles
- How to set background color in jQuery?
- How to set default background color for JTextPane in Java?
- How to set font color in HTML?
- How to set background color of a View in iOS App?
- How can we set a background color to JSplitPane in Java?
- How to set background color of a view in Android App
- How to set the background color of a ttk.Combobox in tkinter?
- How to display the background color of an element in HTML?
- How can we set the background color to a JPanel in Java?
- Changing three.js background to transparent or another color in HTML
- How to set background color of an android activity to yellow Programatically?
- How to set a particular color as background to a JavaFX chart?
- How to set the background color of a column in a matplotlib table?
- How to set the background color of selection of Ellipse using FabricJS?
- How can we set the foreground and background color to JComboBox items in Java?
