A+ A-

HTML Basics


Do not worry about the examples you have not learned in this chapter,
You will learn them in the following sections.

HTML title

The HTML header is defined by the <h1> - <h6> tag.

Examples

<h1>This is a title</h1>
<h2>This is a title</h2>
<h3>This is a title</h3>


HTML paragraph

The HTML paragraph is defined by the tag <p>.

Examples

<p>This is a passage.</p>
<p>This is another passage.</p>


HTML link

HTML links are defined by the tag <a>.

Examples

<a href="http://chandrasaena.blogspot.in">This is a link</a>
Tip: Specify the address of the link in the href attribute.
(You will learn more about the properties in the later chapters of this tutorial).

HTML image

HTML images are defined by the tag <img>.

Examples

<img src="chandrasaena.png" width="104" height="142">
Note: The name and size of the image are provided in the form of attributes.
[right-side]

Do not worry about the examples you have not learned in this chapter, You will learn them in the following sections.