If you want people to read what you have written, then structuring
your text well is even more important on the Web than when writing for
print. People have trouble reading wide, long, paragraphs of text on Web
sites unless they are broken up well.
This section will teach you basic text formatting elements like heading elements and paragraph elements.
Whitespace and Flow:
Before you start to mark up your text, it is best to understand what HTML does when it comes across spaces and how browsers treat long sentences and paragraphs of text.You might think that if you put several consecutive spaces between two words, the spaces would appear between those words onscreen, but this is not the case; by default, only one space will be displayed. This is known as white space collapsing. So you need to use special HTML tags to create multiple spaces.
Similarly, if you start a new line in your source document, or you have consecutive empty lines, these will be ignored and simply treated as one space. So you need to use special HTML tags to create more number of empty lines.
Create Headings - The Elements:
Any documents starts with a heading. You use different sizes for your
headings. HTML also have six levels of headings, which use the elements
,
,
,
,
, and
. While displaying any heading, browser adds one line before
and after that heading.
,
,
, and
. While displaying any heading, browser adds one line before
and after that heading.
, and
. While displaying any heading, browser adds one line before
and after that heading.
Example:
|
This is heading 1This is heading 2This is heading 3This is heading 4This is heading 5This is heading 6 |
Create Paragraph - The Element:
The element offers a way to structure your text. Each paragraph of text should go in between an opening and closingtag as shown below in the example:
Here is a paragraph of text. |
|
Here is a paragraph of text. Here is a second paragraph of text. Here is a third paragraph of text. |
|
This is left aligned.
This is center aligned.
This is right aligned.
This is jutified. This works when you have
multiple lines in your paragraph and you want to justfy all the lines so
that they can look more nice.
|
|
This is left aligned.
This is center aligned.
This is right aligned.
This is jutified. This works when you have multiple
lines in your paragraph and you want to justfy all the lines so that
they can look more nice.
|
Create Line Breaks - The
Element:
Whenever you use the element, anything following it starts on the next line. This tag is an example of an empty element, where you do not need opening and closing tags, as there is nothing to go in between them.
Note: The
element has a space between the characters br and the forward slash. If you omit this space, older browsers will have trouble rendering the line break, while if you miss the forward slash character and just use
it is not valid XHTML
Example:
Hello You come most carefully upon your hour. Thanks Mahnaz |
Hello You come most carefully upon your hour. Thanks Mahnaz |
Centring Content - The
Element:
You can use Example:
This is not in the center. |
|
This is not in the center. |
Nonbreaking Spaces:
Suppose you were to use the phrase "12 Angry Men." Here you would not want a browser to split the "12" and "Angry" across two lines:| A good example of this technique appears in the movie "12 Angry Men." |
|
A good example of this technique appears in the movie "12 Angry Men." |
Soft Hyphens:
Occasionally, you will want to allow a browser to hyphenate long words to better justify a paragraph. For example, consider the following code and its resulting output.|
The morbid fear of the number 13,
or triskaidekaphobia, has plagued some important historic figures like
Mahamiya and Nanao.
|
|
Example for soft hyphen - The
morbid fear of the number 13, or
triskaidekaphobia, has plagued some important
historic figures like Mahamiya and Nanao.
|
|
Example for soft hyphen - The morbid
fear of the number 13, or triskaidekaphobia, has plagued some
important historic figures like Mahamiya and Nanao.
|
Preserve Formatting - The Element:
Sometimes you want your text to follow the exact format of how it is written in the HTML document. In those cases, you can
use the preformatted tag ().
Any text between the opening
tag and the closingtag will preserve the formatting of the source document.
|
function testFunction( strText ){
alert (strText)
}
|
Horizontal Rules - The
Element
Horizontal rules are used to visually break up sections of a
document. The tag creates a line from the current position in the document to the right margin and breaks the line accordingly.
For example you may want to give a line between two paragraphs as follows:
This is paragraph one and should be on top |
|
This is paragraph one and should be on top This is paragraph two and should be at bottom |
tag is an example of an empty element, where you do not need opening and closing tags, as there is nothing to go in between them.
Note: The
element has a space between the characters br and the forward slash. If you omit this space, older browsers will have trouble rendering the line break, while if you miss the forward slash character and just use
it is not valid XHTML






0 comments:
Post a Comment