Welcome

Welcome to my HTML Guide -- I hope you find it useful :)

It covers several topics with easy to understand descriptions of HTML tags you need when learning how to make a website.

Starting with the essential tags and the basics should give you enough to write your first page.

Confused? What is html? What are tags? - Perhaps see where to start or what html really means.

Stylesheets (CSS)

Cascading Style Sheets (CSS) are used to set the look and feel of a website. While the HTML defines the content and how it is organised, you should use stylesheets to define things like colours, borders, size and font.

Learn by Example

Often, the best way to learn is by example. You will find many samples such as this one, which shows the basic html structure.

<html>
 <head>
  <title>My Title</title>
 </head>
 <body>
  <p>Hello World</p>
 </body>
</html>

Try out the examples using the live demo, experiment by entering your own tags to see how they work.

Cheat Sheets

Don't miss the HTML cheat sheet for a quick reference list of HTML tags and their attributes all on one page.

There is also the CSS cheat sheet for style sheets.

Comments, feedback and suggested improvements are welcome, please let me know what you think.

Prev | Top Top | Next Next