Welcome to the second installment in the series of basic, user friendly HTML tutorials I am writing.
In the last tutorial we studied a very basic HTML document, it only involved the most basic of tags,, and diddnt look like much more than a few words when viewed in a web browser.
In this tutorial you will learn how to add other features in HTML to make your webpage look better!
First lets take a look at the code we had last time.
<html>
<head>
<title> <b> Hello this is my first html document </b> </title>
</head>
<body>
<b> hello world </b>
</html>
This code will display a page that looks like this in your browser.

What is the first thing you notice about this page, ITS DULL! , there is no colour, it just looks default and boring, so how do you solve this problem, one way is to add a background colour.