diamond

home HOME

XHTML Tutorial
XHTML HOME
XHTML Introduction
XHTML Why
XHTML v HTML
XHTML Syntax
XHTML DTD
XHTML HowTo
XHTML Validation
XHTML Modules
XHTML Attributes
XHTML Events
XHTML Summary

Selected Reading
Web Glossary
Web Hosting
Web Quality

XHTML Tutorial

Previous Next


XHTML Tutorial

XHTML is a stricter and cleaner version of HTML.

In this tutorial you will learn the difference between HTML and XHTML. We will also show you how this Web site was converted to XHTML.

Start learning XHTML!

 

 

Table Of Contents

Introduction to XHTML
This chapter gives a brief introduction to XHTML and explains what XHTML is.

XHTML - Why?
This chapter explains why we needed a new language like XHTML.

Differences between XHTML and HTML
This chapter explains the main differences in syntax between XHTML and HTML.

XHTML Syntax 
This chapter explains the basic syntax of XHTML.

XHTML DTD 
This chapter explains the three different XHTML Document Type Definitions.

XHTML HowTo
This chapter explains how this web site was converted from HTML to XHTML.

XHTML Validation
This chapter explains how to validate XHTML documents.

XHTML Modules
This chapter explains the modularization of XHTML.

XHTML Summary
This chapter contains a summary on what you have learned in this tutorial and a recommendation on what subject you should study next.

 


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 %>