XHTML is just like HTML, except it has a few differences in the how the document is written. First of all, unlike HTML, XHTML is much stricter about proper syntax. The list of "coding" styles that must be followed follows:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html lang="en">
<head>
<title>Page Title</title>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
</head>
<body>
</body>
</html>