Tuesday 1 April 2014

*LEARN ALL ABOUT ATTRIBUTE====

Attribute are special features given to a tag. An attribute specifies whether the META tag contains descriptive information about the page (NAME) or HTTP header information.

==In HTML (Hypertext Markup Language) , an attribute is a characteristic of a page element, such as a font. An HTML user can set font attributes, such as size and color, to different values. In some programming languages, such as PowerBuilder Power Script, an attribute is a property of an object or may be considered a container for the property of the object. For example, color might be an attribute of a text object, containing the value of "red."
In a database management system (DBMS), an attribute may describe a component of the database, such as a table or a field, or may be used itself as another term for a field.
In the DOS operating system, file properties, such as "read-only" or "visible," are called attributes.
==
The class Attribute:
The class attribute is used to associate an element with a style sheet, and specifies the class of element. You learn more about the use of the class attribute when you will learn Cascading Style Sheet (CSS). So for now you can avoid it.
The value of the attribute may also be a space-separated list of class names.
 For example:
class="classNameA classNameB classNameC"



Program 1.
Perform the following step:

    *Open any text editor like Notepad, Word (dos), etc. to write HTML code.
    * Open the file menu to create a new document Select File> New and type the following code.

    <html>
    <head>
    <title> a web page </title>
    </head>
    <body>
        dddd
    </body>
    </html>
   
    * Click on the File menu and save the file with the name exercise 01.html.
    *Open your web browser and navigate on to the file title execrise 01.html for viewing the output.
In HTML, an attribute is a characteristic of a page element, such as a font. An HTML user can set font attributes such as size and color to different value. in some
Programming language, such as PowerBuilder and Power Script. An attribute is property of an object or may be considered as a container for the property of an object.

For example, color might be an attribute of a text object, containing the value of "red". An attribute is a keyword separated by space within the brackets, such as <HR WIDTH="300">.
Here width=300 is the attribute font the tag. This will specify the width for the HR tag. There are different attributes like height, width etc.

* URL stand for=== Uniform Resource Locator.
*HTML is a Scripting Language




*What is ACRONYM?
This tag is used to display acronyms. This element is new in HTML 4.0 and has only been implemented by internet Explorer.
Example:
<head>
<head>
    <title>using acronym</title>
    </head>
    <body>
    <acronym title="justeffects.com"> just </acronym>
    </body>
    </html>