HTML file headings and tags plays a very important role. It makes perfect styles as expectation of users. HTML headings in files In any ht...
HTML file headings and tags plays a very important role. It makes perfect styles as expectation of users.
HTML headings in files
In any html file we can set headings from <h1>…</h1> to <h6>…</h6>
These are
<h1> Heading 1</h1>
<h2> Heading 2</h2>
<h3> Heading 3</h3>
<h4> Heading 4</h4>
<h5> Heading 5</h5>
<h6> Heading 6</h6>
From these <h1>…</h1> is the largest html file heading and <h6>…</h6> is the smallest file heading.
Different useful html file tags
Bold
<b>….</b>
It is used for showing the texts in bold style.ITALIC
<i>….</i>
Shows text in italic style.Underline
<u>….</u>
Underlines the texts between the tag in html page.Big
<big>….</big>
Show the text in bigger size.Small
<small>….</small>
Shows the texts in smaller size.Strike
<strike>….</strike>
Shows a mark line in the text.Strong
<strong>…..</strong>
Shows the texts in strong style.Sub
<sub>…</sub>
It places the texts lower from main text.
Sup
<sup>…</sup>
It places the text upper from main text.As like this many tags are used for presenting web pages with different styles.
Notice that we have used a tag "<br>". It breaks present line and continues from next line.
Notice that we have used a tag "<br>". It breaks present line and continues from next line.
More examples on html file tags:
<blink>…..</blink>
It will show text one time and next it will not show.<blank quote>……</blank quote>
For presenting any quote.<a>…</a>
This is called anchor tag. It is used for creating hyperlinks.<img>…</img>
This tag is used for adding image in html pages.<abbr>…</abbr>
In abbreviation this tag is used.<tt>…</tt>
It is fixed width format type. It is also called Teletype.<samp>…</samp>
In a web page if we want to show an example use this tag.<code>..</code>
If we want to write any specific sentence in fixed width format then it is used.<table>..</table>
For creating a table this tag is used.<col>..</col>
In table if we want to create a column this is used.<tr>..</tr>
For creating a row in a table.<td>..</td>
For creating the table cells.<th>...</th>
This is used for making a heading of each column of a table.We will see more example with detail discussion in next articles.






No comments