> Online tutorial : html header
Showing posts with label html header. Show all posts
Showing posts with label html header. Show all posts

HTML formatting

Formatting the text
Following are some commonly used tags to format the text
TagMeaning
<p>This tag is should be put at the every paragraph
<br>This is tag causes the single line breaks.Generally it is kept at
the end of every line
<pre>This tag is used to perserve the white spaces and lines the text
<div>This is tag used to make division the sections in the HTML document
Example
<html>
<head>
<title>
The HTML formatting
</title>
</head>
<body>
<p>
once upon a time there was king who kept a monkey as a pet.
The monkey served the king.
</p>
<div>
The woman took the wood and thanked him for his kindness, but when the last stick was burned, the monkey cried out at forest.
</div>
<pre>
Every time the newest monkey takes to the stairs,
 he is attacked.
 Most of the monkeys that are beating him have no idea          why they were not permitted to climb the stairs or why they are participating in the beating of the newest monkey.
</pre>
</body>
</html>



Output


once upon a time there was king who kept a monkey as a pet.
The monkey served the king.

The woman took the wood and thanked him for his kindness, but when the last stick was burned, the monkey cried out at forest.
Every time the newest monkey takes to the stairs,
he is attacked.
Most of the monkeys that are beating him have no idea          why they were not permitted to climb the stairs or why they are participating in the beating of the newest monkey.

html header

Displaying Header
we are using header tags which helps to display the text as some header.The header tag is used by h1,h2,h3,h4,h5,h6
Example
<html>
<head>
<title>
HTML header
</title>
</head>
<body>
<h1>This is first header</h1>
<h2>This is second header</h2>
<h3>This is third header</h3>
<h4>This is forth header</h4>
<h5>This is fifth header</h5>
<h6>This is sixth header</h6>
</body>
</html>

Output

This is first header

This is second header

This is third header

This is forth header

This is fifth header
This is sixth header