HTML

Free HTML Tutorials online

Meta Tags

Meta tags are generally used to include information about a document such as author name, creation date, copyright information etc. They always placed between the <HEAD> tags of an HTML document.
Each Meta tag has two important attributes:

HTTP-EQUIV or NAME
CONTENT

<META HTTP-EQUIV=”some_name” CONTENT=”some_content”>OR
<META NAME=”some_name” CONTENT=”some_content”>

HTML Url Encodeing

Background-
URL Encoding is the process of converting string into valid URL format.  Valid URL format means that the URL contains only what is termed “alpha | digit | safe | extra | escape” characters.

HTML Colors

 I add living color to my home page?” I have asked myself on occasion. It is actually rather simple as far as HTML goes. The first thing to know is the tag - it goes in the “body” tag at the beginning of your document. If you don’t have a “body” tag, you can put one [...]

HTML Events

Only valid in body and frameset elements.
Attribute:onload,onunload.
Value: scripts,scripts
Description:Script to be run when a document loads ,Script to be run when a document unloads.

HTML Attributes

The text on your web page is pretty small. We are about to change that with a new tag: <FONT> </FONT>

HTML Tags

HTML tags (otherwise known as “HTML elements”), and their respective attributes are used to create HTML documents so that you can view them in browsers and other user agents. Note that not all browsers/user agents support all HTML tags and their attributes, so you should try to test your pages in as many browsers as [...]

HTML Summary

This tutorial has taught you how to use HTML to create your own web site.
HTML is the universal markup language for the Web. HTML lets you format text, add graphics, create links, input forms, frames and tables, etc., and save it all in a text file that any browser can read and display.
[...]

HTML Webserver

Web Server
you want other people to view your pages, you must publish them.
To publish your work, you have to copy your files to a web server.
Your own PC can act as a web server if it is connected to a network.

HTML Script

A script is a small, embedded program that can add interactivity to your website. For example, a script could generate a pop-up alert box message, or provide a dropdown menu.

HTML Url

HTML Links…
 you click on a link in an HTML document like this: Last page, an underlying <a> tag points to a place (an address) on the Web with an href attribute value like.

HTML Head

The head of an HTML document contains special information, like its title. The head of a document is demarcated by <head> and </head> respectively.

HTML Style

 style sheets (CSS) to web pages is a relatively simple process, although the topic as a whole is fairly sizeable. Technically speaking, style sheets are not part of HTML but act as an extension to it. Consequently there is a whole new syntax to learn, as well as the HTML used to implement style sheets. [...]

HTML Fonts

A font definition file should contain only commands from this subsection. that these commands can also be used outside a font definition file: they can be put in package or class files, or even in the preamble of a document.

HTML Layouts

HTML tables to format the layout of an HTML page.A part of this page is formatted with two columns. you can see on this page, there is a left column and a right column.This text is displayed in the left column.HTML <table> is used to divide a part of this Web page into two [...]

Quick List

<html>
<head>
<title>Document name goes here</title>
</head>
<body>
Visible text goes here
</body>
</html>

HTML Colors

Html colors - it goes in the “body” tag at the beginning of your document. If you don’t have a “body” tag, you can put one right after your /title or /head tags. This can be seen in the example for this page .