Table of Contents

HTML Cheat Sheet

This is a summarized form of the HTML Tutorial.

For reference this is the HTML Specification .

What is HTML

<!DOCTYPE ...>
<html>
  <head> <title> Title of page </title> </head>
  <body background=url> This is my first webpage. </body>
</html>

HTML Components

Formatting Tags

Lists & Tables

Forms

<form name="input" action="cgi.php" method="get">
  <input type="text" name="name" value="">
  <input type="radio" name="sex" value="male">
</form>
<fieldset>
  <legend>Caption</legend>
 <form></form>
</fieldset> 

Other Tags

Fonts, Colors & Backgrounds

Character Entities

HTML Head

Advanced HTML

XHTML