Você não precisa definir o namespace para um arquivo XHTML básico. Na verdade, o namespace é assumido como XHTML em um arquivo típico de página da web.
A parte errada é onde você prefixará todos os nomes de elementos com html:
.
Além disso, houve alguns erros. Você não pode ter atributos de altura e largura para tabelas e o atributo meta charset é redundante. Descubra cinco diferenças:
<?xml version="1.0" encoding="utf-8"?>
<!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 name="generator" content=
"HTML Tidy for Linux/x86 (vers 25 March 2009), see www.w3.org" />
<meta http-equiv="Content-Type" content="text/html" />
<title>Page Title</title>
<meta name="keywords" content="Stuff the page is about" />
<meta name="description" content="Great little webpage" />
<script type="text/javascript">
</script>
</head>
<body>
<table>
<tr style="height:798px;">
<td></td>
<td><iframe height="100%" src="CapabilitiesList.htm" width=
"100%" frameborder="0" scrolling="no"></iframe></td>
<td></td>
</tr>
</table>
</body>
</html>