In this tutorial, you will style the body of a webpage with a CSS rule. You will use this rule to apply and style a background image and set the font family for the webpage. You will also create a style rule that changes the color of all hyperlinked text to a color that better matches the demonstration website’s color palette.
This exercise will be used to recreate the style of the demonstration site but you can apply and modify the same rules used here for other HTML/CSS website projects.
To follow this tutorial, make sure you have set up the necessary files and folders as instructed in a previous tutorial in this series How To Set Up You CSS and HTML Practice Project.
For this tutorial, we suggest you use the background image from the demonstration site which you can download from this link. You may use another image as your background, but make that sure that the image is large enough to fill the screen.
Note: To download the background image of the demonstration site, visit this link and click CTRL + Left Click
(on Macs) or Right Click
(on Windows) on the image and select “Save Image As” and save it as background-image.jpeg
to your "image’ folder.
Once you have selected an image, make sure it’s saved as “background-image.jpeg” in your images
folder. You are now ready to proceed to the next step.
To declare style rules for the body of a webpage, you will need to create a CSS rule for the body
tag selector. These rules will then be applied to all elements that are placed inside the opening and closing <html>
tags that you added to the index.html
file in the earlier tutorial How To Set Up Your CSS and HTML Website Project.
To add a background image to your site, create a CSS rule using the <body>
tag selector. Erase everything in your styles.css
file (if you have been following along with this series) and add the following ruleset:
/* General Website Style rules */
body {
font-family: "Helvetica", Sans-Serif;
background-image: url("../images/background-image.jpeg");
}
Take note of the highlighted file path, which tells the browser where to locate the background image. If you have changed the name or location of the image then you will need to adjust the file path here accordingly.
Let’s pause briefly to understand each of the declarations in this ruleset:
/* General Website Style rules */
is a CSS comment, which is not displayed by the browser. Like HTML comments, CSS comments are useful for explaining and organizing your code for future reference. Notice that CSS comments open and close with /*
and */
tags instead of <!--
and -->
tags used for HTML comments.font-family: "Helvetica", Sans-Serif;
declaration sets the font family (Helvetica) and generic font family (Sans-Serif) for all the text on the webpage. (Note that you can specify different font families for text content on the same webpage by adding CSS rules later on). The generic font family is given as a backup in case the first font family isn’t available and the browser needs to pick a back up font. You can explore other fonts by replacing “Helvetica” with other font names, such as Times
, Courier
, or Palatino
.background-image: url("../images/background-image.jpeg;")
declaration tells the browser to add a background image to the webpage using the file found with the specified file path. Note that you have prepended ../
to the file path name to tell the browser to locate the images
folder in the directory above the directory that contains the file you are working in (styles.css
).Save your styles.css
file and load the index.html
page in your browser. For instructions on loading an HTML file, please visit our tutorial step How To View An Offline HTML File In Your Browser.
You should receive a page with no content except for the background image:
If you don’t receive an image, check to make sure your file path is correct and that there are no errors in your index.html
file and styles.css
file.
Next, we’ll add a CSS rule that changes the color of all hyperlinked text to a color that better matches the website color palette.
At the bottom of your styles.css
file, add the following ruleset:
a {
color: #112d4e;
}
This ruleset will style any text marked up with an <a>
tag with the HTML color code #112d4e
. The style will not be apparent until you add <a>
elements to your index.html
page (which you will do in the last tutorial How To Create a Static Footer With HTML and CSS. You can change the style color by changing the HTML color code in this CSS rule.
You should now have a webpage with a large background image. In addition, you declared a font family that will be applied when you begin to add text content. Using rulesets like these allow you to change the font and background image of a webpage by creating a ruleset for the body
tag selector. Finally, you created a style rule that specifies the color of any hyperlinked text you add to the page.
In the next tutorial, you’ll recreate the header section of the demonstration website.
Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.
This tutorial is part of a series on creating and customizing this website with CSS, a stylesheet language used to control the presentation of websites. You may follow the entire series to recreate the demonstration website and gain familiarity with CSS or use the methods described here for other CSS website projects.
Before proceeding, we recommend that you have some knowledge of HTML, the standard markup language used to display documents in a web browser. If you don’t have familiarity with HTML, you can follow the first ten tutorials of our series How To Build a Website With HTML before starting this series.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!