Learn Some HTML Basic

. Wednesday, November 17, 2010
  • Agregar a Technorati
  • Agregar a Del.icio.us
  • Agregar a DiggIt!
  • Agregar a Yahoo!
  • Agregar a Google
  • Agregar a Meneame
  • Agregar a Furl
  • Agregar a Reddit
  • Agregar a Magnolia
  • Agregar a Blinklist
  • Agregar a Blogmarks

Learn Some HTML Basics

« PreviousNext Chapter »

If you don't understand some tags, You will learn all tags in successive chapters So don't worry about those tags.

HTML Headings

HTML headings are defined with the <h1> to <h6> tags.

Example:

<h1>This is a heading</h1>
<h2>This is a heading</h2>
<h3>This is a heading</h3>
<h4>This is a heading</h4>
<h5>This is a heading</h5>
<h6>This is a heading</h6>


HTML Paragraphs <p>

HTML paragraphs are defined with the tag <p>

Example:

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

HTML Links

HTML links are defined with the Anchor Tag <a> tag.
Example
<a href="http://www.example.com/">This is Link will take you to example.com </a>

HTML Images


If you want to insert a image in your web document simply apply the following example.
HTML images are defined with the <img> tag.
Example:
<img> src="image1.jpg" height="150" width="150" />
Note: In src attribute you have to put accurate src of image you want to insert.
« PreviousNext Chapter »

0 comments: