CSS JavaScript About Contact

Welcome to my page here you will find a few basic HTML tags to help you along the way I will show you things like

Background Color


Changing the background color is easy, But your probably asking why change it from the standard old white, well...because white is boring!

<bg color = #0000>

Understanding Color


To understand color, we must first understand how a computer diasplays colors.


Computers work on a R,G,B system which stands for Red, Green and Blue

Images


Images are great for website, they allow to visually allow you to show something you are trying to explain.

For example, I could try to explain to you what a leaf looks like but using this block of code i would rather show you.

<img src"file name of image.extension">

take notice of where I wrote out "file name of image" what this simply means, is if that your picture is called picture1

You will write out picture1 and the exstenstion, so if the extension is a JPEG you will write ".jpg"

Tables


Tables are now an ineffective way to create a website since most of the layout is done using a combination of CSS/HTML and photoshop to create a layout I recommend not using them but they are a great tool for begginers to understand proper weblayout.

<table> </table>

Next you create rows using the table row tag

<tr> </tr>

Then to add data you use the table data tag

<td> </td>

this is what a complete table code should look like

<table> <tr> <td>Your data here</td> </tr> </table>