Creating Web Page Using HTML
Creating Web Page Using HTML
When you save an HTML file, you can use either the
.htm or the .html extension.
The .htm extension comes from the past when some of
the commonly used software only allowed three letter
extensions.
It is perfectly safe to use either .html or .htm, but be
consistent. mypage.htm and mypage.html are treated
as different files by the browser.
How to View HTML Source
Color Names
A collection of color names is supported by most
browsers. To view a table of color names that are
supported by most browsers visit this web page:
http://profdevtrain.austincc.edu/html/colo
r_names.htm
HTML Lists
HTML provides a simple way to show unordered lists
(bullet lists) or ordered lists (numbered lists).
Unordered Lists
An unordered list is a list of items marked with bullets
(typically small black circles). An unordered list starts
with the <ul> tag. Each list item starts with the <li> tag.
HTML Lists
Ordered Lists
An ordered list is also a list of items. The list items
are marked with numbers. An ordered list starts
with the <ol> tag. Each list item starts with the <li>
tag.
Definition Lists
Definition lists consist of two parts:
a term and a description.
To mark up a definition list, you need three
HTML elements;
a container <dl>,
a definition term <dt>, and
a definition description <dd>.
HTML Images