Help Laptop Instruction DVDs Graphics Help Help Workstation Software Advice Workstation Help Teaching Programming DVDs Education Business Learning CDs Word Teaching
Office Software - Excel Software - Microsoft Software - QuickBooks Software - Visual Software - Comptuer Software - Web Software - Sharepoint Software - Photoshop Software - Mac Software - QuarkXPress Software - management Software - Project Software - Learn Software - email Software - Network Software - Linux Software - Unix Software - Work Software - Net Software - ASP Software - PHP Software - HTML Software - CMS Software - XML Software - Mobile Software -
Assistance Adobe Teaching Training Graphics Learning DVDs IT Learning Advice IT Training Tutorials Certification Guidance Help Design Assistance Software Laptop Advice

Main HTML Tags Help with HTML

Main HTML tags
HTML is used for designing web pages. Open your textpad and you can begin to design a web page. Always begin with the HTML tags below. Once you are done just save your web page as .HTM or as .HTML and your page is ready to be viewed in a browser.

<html></html> Sets up HTML document. Placed in beginning and at end of document
< head></head> For information that isn’t displayed in the Web page itself. The title is placed in between the head tags.
• <title></title> Places the name of the document in the title bar
• <meta name="title" > Insert non dynamic information. Used to give information about site not visable
< body></body> Used for the visible part of the document. The Attributes below are used in the body tags to create different effects. All colors can be set in Hex Value or name value.
• <body alink=?> active links
• <body bgcolor=?> For background color
• <body link=?> color of links
• <body text=?> the text color
• <body vlink=?> visited links
Example: <body bgcolor="#000000" text="#00FF00" link="#990000" vlink="#0000FF" alink="#FFFF00">