Basic Tags in XHTML

DOCTYPE Declaration:

<!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>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />

Document Foundation:

<html></html>
<head></head>
<title></title>
<body></body>

Document Structure:

<div></div>
<p></p>
<br / >

Image and Link Tags:

<img src=" " />
<a href=" "></a>
<a name=" "></a>

XHTML Formatting:

<b></b> or <strong></strong>
<i></i> or <em></em>
<u></u>
<center></center>
<blockquote></blockquote>
<span></span>
<hr />

Headings (1-6):

<h1> </h1>
<h2> </h2>

Lists:

<ul></ul>
<ol></ol>
<li></li>

Commenting:

<!-- text -->