Learn Some HTML Basic

. Wednesday, November 17, 2010
0 comments

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 »

HTML Get Started

.
0 comments

Learn HTML - Get Started

« PreviousNext Chapter »

Editing HTML

  • You Need A plain Text Editor such as Notepad

But, professional web developers often prefer HTML editors such as FrontPage or Dreamweaver, instead of writing whole tags in plain text.

I know You have a plain text editor, so start learning HTML now.
Open your text editor and write some text as i told in my previous post

  • Save this file with extension ".html" or ".htm"
  • Now Double Click on Saved File

It will open in your default web browser.
It is a web page.

« PreviousNext Chapter »