xHTML é processado localmente, mas quando em um site da Web ele é baixado como um arquivo ao usar o Chrome ou o Opera

1

Abaixo está a listagem xHTML:

<?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:html="http://www.w3.org/1999/xhtml">
<html:head>
<html:meta http-equiv="Content-Type" content="text/html" charset="utf-8" />
<html:title>
Page Title</html:title>
<html:meta name="keywords" content="Stuff the page is about" />
<html:meta name="description" content="Great little webpage" />
<html:script type="text/javascript" />
</html:head>
<html:body>
<html:table height="800px" width="100%">
<html:tr style="height:798px;">
<html:td />
<html:td height="100%" width="1100px">
<html:iframe height="100%" src="CapabilitiesList.htm" width="100%" frameborder="0" scrolling="no" />
</html:td>
<html:td />
</html:tr>
</html:table>
</html:body>
</html>
    
por frankinstein 22.03.2013 / 20:33

1 resposta

0

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>
    
por 22.03.2013 / 20:38