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 »

Introduction to HTML

. Monday, October 25, 2010
0 comments

Next Chapter »

Here in this Post I'm going tell you what is HTML and why we use HTML what it do.

  • HTML stands for Hyper Text Markup Language
  • You can create your own Website by using HTML.
  • Learning HTML is very easy you can learn basics of HTML in very less time.

HTML is a markup language which describe web pages.

  • HTML is NOT a programming language, it is a Markup Language
  • A markup language have it's set of of markup tags.
  • and HTML uses markup tags to describe web pages, that's why it is called as Markup Language not the Programming Language.

By Using Markup tags we can guide a browser how to display the content. We can decide everything, like text size what to display, where to display, and many more.

A Simple HTML document is called as Web Page.

Example:
HTML markup looks like following:

<html>
<body>
<h1>A Heading in Webpage Displayed Like This..!</h1>
<p>A Paragraph is displayed by using these tags.</p>
</body>
</html>

When a Browser render this html code it will display this as following ways.

A Heading in Webpage Displayed Like This..!

A Paragraph is displayed by using these tags.

Next Chapter »