| HyperText Markup Language (HTML)
Style
Structure
See also :
|
Paragraphs
HTML considers paragraphs to be blocks of text. Browsers do their best to fit the contents of paragraphs into the window, unless the NOWRAP or NOBR attribute is explicitly specified.
Within a paragraph, all spaces, tabs, and line breaks each count as a single space.
To place text in blocks, the pair of tags <p> and </p> is used. This tag can include any of the previously mentioned atributes.
Line breaks (skipping from one line to the next) are created using the <br/> tag.
The <hr> is used for inserting a horizontal line.
| Tag |
Attribute |
Visual Effect |
| <br/> |
|
line break |
| <p> and </p> |
|
paragraph |
| <hr size=5 width=20% align=left> |
SIZE WIDTH ALIGN |
|
Containers
Tags which are used to indent text are called containers.
| Container |
Visual Effect |
| <blockquote> and </blockquote> |
Indented text |
| <address> and </address> |
For writing contact information |
| <note> and </note> |
For writing a note |
| <fn> and </fn> |
For creating a footnote |
| <banner> and </banner> |
Makes a block of text fixed relative to the page |
| <pre> and </pre> |
For writing preformatted text;
keeping spaces, line breaks, and tabs intact
|
HTML - Introduction HTML (HyperText Mark-Up Language) is what is known as a "mark-up language" whose role is to prepare written documents using formatting tags. The tags indicate how the document is presented and how it links to other documents. HTML is also used for...
en.kioskea.net/html/htmlintro.php3 HTML - Paragraphs HTML considers paragraphs to be blocks of text. Browsers do their best to fit the contents of paragraphs into the window, unless the NOWRAP or NOBR attribute is explicitly specified. Within a paragraph, all spaces, tabs, and line breaks each count as...
en.kioskea.net/html/htmlparagraphes.php3 HTML - Colour Table In HTML, colours are defined by three hexadecimal numbers, which represent the Red, Green, and Blue tones (using RGB coding) of the chosen colour. This is the syntax for coding a colour in HTML: color="#RRGGBB" RR, GG and BB each represent a...
en.kioskea.net/html/htmlcouleurs.php3 HTML - Headings HTML can use six different levels of headings to define the hierarchical structure of paragraphs in a document: TagVisual Effect H1 Test H2 Test H3 Test H4 Test H5 Test H6 Test The following attributes are placed within structure tags so that the...
en.kioskea.net/html/htmltitres.php3