HTML Basic
HTML Introduction
What is HTML?
HTML is a language for describing web pages.
HTML stands for Hyper Text Markup Language
HTML is [...]
HTML Getting Started
What You Need
You don’t need any special tools to learn HTML
You don’t need any HTML editor
You don’t need a web [...]
HTML Some Examples
Don’t worry if the examples use tags you have not learned. You will learn about them in the [...]
HTML Elements
HTML documents are defined by HTML elements.
HTML Elements
An HTML element is everything from the start tag to the end tag:
Start [...]
HTML Attributes
Attributes provide additional information about HTML elements.
HTML Attributes
HTML elements can have attributes
Attributes provide additional information about the element
Attributes are [...]
HTML Headings
Headings are important in HTML documents.
HTML Headings
Headings are defined with the <h1> to <h6> tags.
<h1> defines the largest heading. [...]
HTML Paragraphs
HTML documents are divided into paragraphs.
Paragraphs are defined with the <p> tag.
Example
<p>This is a paragraph</p>
<p>This is another paragraph</p>
Note: Browsers automatically [...]
HTML Styles
The style attribute is a new HTML attribute. It introduces CSS to HTML.
Look! Styles and colors
This [...]
HTML Links
A link is the “address” to a document (or a resource) on the web.
HTML links
This example [...]
HTML Images
The Image Tag and the Src Attribute
In HTML, images are defined with the <img> tag.
The <img> tag is empty, [...]
HTML Tables
HTML Tables
Apples
44%
Bananas
23%
Oranges
13%
Other
10%
Tables
Tables are defined with the <table> tag. A table is divided into rows (with the <tr> [...]
HTML Lists
HTML supports ordered, unordered and definition lists.
HTML Lists
This is the first
This is the second
This is the third
Unordered Lists
An unordered list [...]
HTML Forms and Input
HTML Forms are used to select different kinds of user input.
Forms
A form is an area that can contain [...]
HTML Colors
Colors are displayed combining RED, GREEN, and BLUE light.
Color Values
HTML colors are defined using a hexadecimal (hex) notation for [...]
HTML Color Names
Color Names Supported by All Browsers
The list below is a complete list of the color names supported by all [...]
HTML Color Values
Color Names Supported by All Browsers
The list below is a complete list of the color names supported by all [...]
HTML 4.01 Quick List
HTML Quick List from W3Schools. Print it, fold it, and put it in your pocket.
HTML Basic Document
<html>
<head>
<title>Document name [...]
