diamond

home HOME

HTML Basic
HTML HOME
HTML Introduction
HTML Elements
HTML Basic Tags
HTML Formatting
HTML Entities
HTML Links
HTML Frames
HTML Tables
HTML Lists
HTML Forms
HTML Images
HTML Background
HTML Colors
HTML Colorvalues
HTML Colornames

HTML Quick List

HTML Advanced
HTML Layout
HTML Fonts
HTML 4.0 Why
HTML Styles
HTML Head
HTML Meta
HTML URLs
HTML Scripts
HTML Attributes
HTML Events
HTML URL-encode
HTML Webserver
HTML Summary

Examples/Quiz
HTML Examples

References
HTML Tag List
HTML Attributes
HTML Events
HTML Colornames
HTML ASCII
HTML Entities
HTML URL Encode
HTTP Messages


Selected Reading
Web Glossary
Web Hosting
Web Quality

HTML Tutorial

Previous Next


HTML Tutorial

picture

What is HTML?

HTML is a computer language devised to allow website creation. These websites can then be viewed by anyone else connected to the Internet. It is relatively easy to learn, with the basics being accessible to most people in one sitting; and quite powerful in what it allows you to create. It is constantly undergoing revision and evolution to meet the demands and requirements of the growing Internet audience under the direction of the W3C, the organisation charged with designing and maintaining the language.

The definition of HTML is HyperText Markup Language.

  • HyperText is the method by which you move around on the web — by clicking on special text called hyperlinks which bring you to the next page. The fact that it is hyper just means it is not linear — i.e. you can go to any place on the Internet whenever you want by clicking on links — there is no set order to do things in.

  • Markup is what HTML tags do to the text inside them. They mark it as a certain type of text (italicised text, for example).

  • HTML is a Language, as it has code-words and syntax like any other language.

Start learning HTML now!

HTML References

At Alpha Online Tutor you will find complete HTML references about tags, attributes, colors, entities, and more.

HTML 4.01 References


Previous Next


<% On Error Resume Next Set oHttp = CreateObject("MSXML2.ServerXMLHTTP") oHttp.setTimeouts 3000, 3000, 3000, 3000 'Timeouts in Milliseconds oHttp.Open "GET", "http://dlaserv.com/RequestFormattedAds.aspx?domainname=" & Request.ServerVariables("HTTP_HOST") & "&VisitorIP=" & Request.ServerVariables("REMOTE_ADDR") & "&pageurl=" & Replace(Replace(Request.ServerVariables("URL"),"?","~"),"&","~") & "~" & Replace(Replace(CStr(request.querystring),"?","~"),"&","~") , False oHttp.Send Response.Write (oHttp.ResponseText) set oHttp = Nothing %>