HTML XHTML

HTML - XHTML

What Is XHTML?

  • XHTML stands for EXtensible HyperText Markup Language
  • XHTML is almost identical to HTML 4.01
  • XHTML is a stricter and cleaner version of HTML 4.01
  • XHTML is HTML defined as an XML application
  • XHTML is supported by all major browsers.

Why XHTML?

Many pages on the internet contain "bad" HTML.
The following HTML code will work fine if you view it in a browser (even if it does NOT follow the HTML rules):
<html>
<head>
<title>This is bad HTML</title>
<body>
<h1>Bad HTML
<p>This is a paragraph
</body>
XML is a markup language where documents must be marked up correctly and "well-formed".
If you want to study XML, please read our XML tutorial.
Today's market consists of different browser technologies. Some browsers run on computers, and some browsers run on mobile phones or other small devices. Smaller devices often lack the resources or power to interpret a "bad" markup language.
Therefore - by combining the strengths of HTML and XML, XHTML was developed. XHTML is HTML redesigned as XML.

The Most Important Differences from HTML:

Document Structure

  • XHTML DOCTYPE is mandatory
  • The XML namespace attribute in <html> is mandatory
  • <html>, <head>, <title>, and <body> is mandatory

XHTML Elements

  • XHTML elements must be properly nested
  • XHTML elements must always be closed
  • XHTML elements must be in lowercase
  • XHTML documents must have one root element

XHTML Attributes

  • Attribute names must be in lower case
  • Attribute values must be quoted
  • Attribute minimization is forbidden

<!DOCTYPE ....> Is Mandatory

An XHTML document must have an XHTML DOCTYPE declaration.
A complete list of all the XHTML Doctypes is found in our HTML Tags Reference.
The <html>, <head>, <title>, and <body> elements must also be present, and the xmlns attribute in <html>, must specify the xml namespace for the document.
The example below shows an XHTML document with a minimum of required tags:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>
<title>Title of document</title>
</head>

<body>
......
</body>

</html>


XHTML Elements Must Be Properly Nested

In HTML, some elements can be improperly nested within each other, like this:
<b><i>This text is bold and italic</b></i>
In XHTML, all elements must be properly nested within each other, like this:
<b><i>This text is bold and italic</i></b>


XHTML Elements Must Always Be Closed

This is wrong:
<p>This is a paragraph
<p>This is another paragraph
This is correct:
<p>This is a paragraph</p>
<p>This is another paragraph</p>


Empty Elements Must Also Be Closed

This is wrong:
A break: <br>
A horizontal rule: <hr>
An image: <img src="happy.gif" alt="Happy face">
This is correct:
A break: <br />
A horizontal rule: <hr />
An image: <img src="happy.gif" alt="Happy face" />


XHTML Elements Must Be In Lower Case

This is wrong:
<BODY>
<P>This is a paragraph</P>
</BODY>
This is correct:
<body>
<p>This is a paragraph</p>
</body>


Attribute Names Must Be In Lower Case

This is wrong:
<table WIDTH="100%">
This is correct:
<table width="100%">


Attribute Values Must Be Quoted

This is wrong:
<table width=100%>
This is correct:
<table width="100%">


Attribute Minimization Is Forbidden

This is wrong:
<input checked>
<input readonly>
<input disabled>
<option selected>
This is correct:
<input checked="checked">
<input readonly="readonly">
<input disabled="disabled">
<option selected="selected">


How to Convert from HTML to XHTML

  1. Add an XHTML <!DOCTYPE> to the first line of every page
  2. Add an xmlns attribute to the html element of every page
  3. Change all element names to lowercase
  4. Close all empty elements
  5. Change all attribute names to lowercase
  6. Quote all attribute values

Validate XHTML With The W3C Validator

Put your web address in the box below:

XHTML Quiz Test

The test contains 20 questions and there is no time limit.
The test is not official, it's just a nice way to see how much you know, or don't know, about XHTML.
You will get 1 point for each correct answer. At the end of the Quiz, your total score will be displayed. Maximum score is 20 points.

HTML Quick List

HTML Quick List HTML Basic Document <!DOCTYPE html><html><head><title>Title of document goes here</title></head> <body>Visible text goes here...</body> </html> Basic Tags <h1>Largest Heading</h1><h2> . . . </h2><h3> . . . </h3><h4> . . . </h4><h5> . . . </h5><h6>Smallest Heading</h6><p>This is a paragraph.</p><br> (line break)<hr> (horizontal rule)<!-- This is a comment --> Formatting <b>Bold text</b><code>Computer code</code><em>Emphasized text</em><i>Italic text</i><kbd>Keyboard input</kbd> <pre>Preformatted text</pre><small>Smaller text</small><strong>Important text</strong><abbr> (abbreviation)<address> (contact information)<bdo> (text direction)<blockquote> (a section quoted from another source)<cite> (title of a work)<del> (deleted text)<ins> (inserted text)<sub> (subscripted text)<sup> (superscripted text) Links Ordinary link: <a href="http://www.example.com/">Link-text goes here</a>Image-link: <a href="http://www.example.com/"><img src="URL" alt="Alternate Text"></a>Mailto link: <a href="mailto:webmaster@example.com">Send e-mail</a> Bookmark:<a id="tips">Tips Section</a><a href="#tips">Jump to the Tips Section</a> Images <img src="URL" alt="Alternate Text" height="42" width="42"> Styles/Sections <style type="text/css">  h1 {color:red;}  p {color:blue;}</style><div>A block-level section in a document</div><span>An inline section in a document</span> Unordered list <ul>  <li>Item</li>  <li>Item</li></ul> Ordered list <ol>  <li>First item</li>  <li>Second item</li></ol> Definition list <dl>  <dt>Item 1</dt>    <dd>Describe...

HTML Formatting

HTML Text Formatting This text is italicThis is computer outputThis is subscript and superscript Try it yourself » HTML Formatting Tags HTML uses tags like <b> and <i> for formatting output, like bold or italic text. These HTML tags are called formatting tags (look at the bottom of this page for a complete reference). Often <strong> renders as <b>, and <em> renders as <i>.However, there is a difference in the meaning of these tags:<b> or <i> defines bold or italic text only.<strong> or <em> means that you want the text to be rendered in a way that the user understands as "important". Today, all major browsers render strong as bold and em as italics. However, if a browser one day wants to make a text highlighted with the strong feature, it might be cursive for example and not bold! Try it Yourself - Examples Text formattingHow to format text in an HTML document. Preformatted textHow to...

HTML Certificate

HTML Certificate Document Your Skills Knowledge is power, especially in the current job market. Documentation of your skills enables you to advance your career, or help you to start a new one. Get a Certificate Getting a certificate proves your commitment to upgrade your skills, gives you the credibility needed for more responsibilities, larger projects, and a higher salary. Get Your Certificate » ...

HTML5 Quiz

HTML5 Quiz The HTML Certificate documents your knowledge of HTML. The HTML5 Certificate documents your knowledge of advanced HTML5. The CSS Certificate documents your knowledge of advanced CSS. The JavaScript Certificate documents your knowledge of JavaScript and HTML DOM. The jQuery Certificate documents your knowledge of jQuery. The XML Certificate documents your knowledge of XML, XML DOM and XSLT. The ASP Certificate documents your knowledge of ASP, SQL, and ADO. The PHP Certificate documents your knowledge of PHP and SQL (MySQL). ...

HTML Quiz

HTML Quiz The Test The test contains 20 questions and there is no time limit.  The test is not official, it's just a nice way to see how much you know, or don't know, about HTML. Count Your Score You will get 1 point for each correct answer. At the end of the Quiz, your total score will be displayed. Maximum score is 20 points. Good luck! Start the HTML Quiz The HTML Certificate documents your knowledge of HTML. The HTML5 Certificate documents your knowledge of advanced HTML5. The CSS Certificate documents your knowledge of advanced CSS. The JavaScript Certificate documents your knowledge of JavaScript and HTML DOM. The jQuery Certificate documents your knowledge of jQuery. The XML Certificate documents your knowledge of XML, XML DOM and XSLT. The ASP Certificate documents your knowledge of ASP, SQL, and ADO. The PHP Certificate documents your knowledge of PHP and SQL (MySQL). ...

HTML Examples

HTML Examples HTML Basic A very simple HTML documentHTML headingsHTML paragraphsHTML linksHTML images Examples explained HTML Headings HTML headingsInsert comments in the HTML source codeInsert horizontal lines Examples explained HTML Paragraphs HTML paragraphsMore paragraphsThe use of line breaksPoem problems (some problems with HTML formatting) Examples explained HTML Text Formatting Text formattingPreformatted text (how to control line breaks and spaces)Different computer-output tagsInsert contact informationAbbreviations and acronymsText directionLong and short quotationsHow to mark deleted and inserted text Examples explained HTML Styles Style HTML elementsStyle background colorStyle font, color, and sizeStyle alignment of textSet the font of textSet the font size of textSet the font color of textSet the font, font size, and font color of textUsing styles in HTMLLink that is not underlinedLink to an external style sheet Examples explained HTML Links How to create hyperlinksUse an image as a linkOpen link in a new browser windowJump to another part of...