Monday, June 14, 2010

<tt> <i> <b> <big> <small> Tags

<i> Italic text
<b> Bold text
<big> Bigger text
<small> Smaller text

Above are font style tags, suport by all mojor browsers.

class - classname Element classname
dir - rtl, ltr Element direction
id - Element unique id
lang - languageCode Element language
style - style_def Element inline style
title - text Element Information

Monday, June 7, 2010

<address> Tag

The HTML address tag is commonly used to provide contact information at the bottom or beginning of a document or a form. It could be used, for example, to provide information about the enterprise behind the website, the author of a specific article or the author of the website itself. Note that browsers may change the aspect of the text between these tags (e.g., italic font).

<address>
www.varadesigns.com<br />
<a href="mailto:varadesigns@yahoo.com">Email us</a><br />
Address: 7-26-11/2<br />
Phone: +91 9999999999
Hyderabad
</address>

class - classname Element classname
dir - rtl, ltr Element direction
id - Element unique id
lang - languageCode Element language
style - style_def Element inline style
title - text Element Information

<acronym> Tag

<abbr title="Wensite Designing and development Services"> www.varadesigns.com <acronym>

An acronym is a word made from other words. For example, "ASAP" is an acronym of As Soon As Possible, and "modem" is an acronym of modulator and demodulator.

Do you know what the acronym DIY means?

The appearance of the acronym on the page can vary depending on the browser, but it is supported by all major browsers.

You have to add a title attribute to the abbreviation tag in order for that tool tip to appear explaining what the abbreviation means. That's coded like this:

Example :
www.varadesigns.com

class - classname Element classname
dir - rtl, ltr Element direction
id - Element unique id
lang - languageCode Element language
style - style_def Element inline style
title - text Element Information

Saturday, June 5, 2010

<abbr> Tag

<abbr title="Wensite Designing and development Services"> www.varadesigns.com </abbr>

Example :
www.varadesigns.com


class - classname Element classname
dir - rtl, ltr Element direction
id - Element unique id
lang - languageCode Element language
style - style_def Element inline style
title - text Element Information

Thursday, June 3, 2010

<a> Anchor Tag

<a href="http://www.varadesigns.com"> Web Designing Services </a>

Usage of the Anchor Tag - link OR hyperlink

<a> an anchor Tag. We can use it in two ways

# Creating a link to another page, by href attribute
# Bookmark inside a Page, by name attribute

href is the most important attribute, it link's to destination.

Link will appear as follows in all browsers

unvisited link - underlined and blue
visited link - underlined and purple
active link - underlined and red


Attributes

class - Classname Element classname
id - id Element id
dir - rtl ltr It tells the text direction for the content
style - definition Element inline style
tabindex - number Element tab order
title - text Element extra information

HTML Basic Tags

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

<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

HTML paragraphs are defined with the <p> tag.

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

HTML Links

HTML links are defined with the <a> tag.

<a href="http://www.w3schools.com">This is a link</a>

HTML Images

HTML images are defined with the <img> tag.

<img src="w3schools.jpg" width="104" height="142" />

Wednesday, June 2, 2010

HTML Introduction

<span style="font-weight:bold;">For Developing website HTML is Required</span>

HTML is Very Easy to learn.

<span style="font-weight:bold;">What is HTML?</span>

HTML is a language for designing web pages.

* HTML stands for Hyper Text Markup Language
* HTML - It is not a programming language, it is a markup language
* A markup language is a set of markup tags

<span style="font-weight:bold;">HTML Tags</span>

HTML tags are called as HTML tags

* HTML tags are surrounded by brackets like <html>
* HTML tags come in pairs like <b> and </b>
* The first tag is the start tag, second tag is the end tag
* These two tags are also called opening tags and closing tags

<span style="font-weight:bold;">Example Explained</span>

The text between
* <html> and </html> is the web page
* <body> and </body> is the page content which is visible at
* <h1> and </h1> is a heading
* <p> and </p> content displayed as a paragraph