The Open Source Definition (Annotated) | Open Source InitiativeThe Open Source Definition (Annotated)Version 1.9The indented, italicized sections below appear as annotations to the Open Source Defini…
HTML Background Code
Page Background
To set the background for the whole page, simply apply thebackground
property against the body
tag.Example:
Alternative Background Codes
Below are more HTML background codes. In these examples, instead of using thebackground
shorthand property, we use a property more specific to the actual effect we want to achieve. Doing this is simply an alternative - it's your choice which method you use.Background Color
This example code applies a background color to ap
tag using the background-color
property. You can apply background color to any other HTML element, such as a div
tag, body
tag etc. Here, we also apply color to the text by using the color
property. Choose a color with the HTML color picker.
Source Code | Result |
---|---|
This text has got a background color applied. You could also apply background color to the whole page if you like. |
Background Image
This example code applies a background color to ap
tag using the background-color
property. You can apply background color to any HTML element, such as a div
tag, body
tag etc. Here, we also apply color to the text by using the color
property. Source Code | Result |
---|---|
This div tag has got a background image. You could also apply a background image to the whole page if you like. |
Fixed Background Image
You can fix the background image so that it doesn't scroll when you scroll the div (or page, as the case may be).Source Code | Result |
---|---|
This HTML background code demonstrates how to keep the background image fixed. Scroll down to see what I mean - the background image stays in the same position. |
http://ajabingung.blogspot.com/2013/03/html-background-code.html
This page contains HTML background code. Feel free to copy and paste the HTML background code into your own website, blog, MySpace page, or other HTML document. And feel free to modify the code as y…
HTML Background
This example sets all the background properties with one property - the 'background' property. This keeps the code shorter and easier to read.
Page Background
To set the background for the whole page, simply apply the
background
property against the body
tag.Example:

BackgroundsHTML and CSS provides many ways of changing backgrounds in web pages.This page explains the industry standard way of creating backgrounds in HTML. Feel free to copy and paste the background…