Elementos de frase


Los elementos de frase se aplican a texto y se comportan como los elementos en línea.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="es">
  <head>
    <title>Elementos de frase</title>
  </head>
  <body>
	  <p>
      <abbr
			title="Escuela Universitaria de Ingeniería Técnica Informática de Gijón">
  		  EUITIG
  		</abbr>
			<br />
  		<acronym
			title="Organización del Tratado del Atlántico Norte">
  		  OTAN
  		</acronym>
		</p>
<pre>
<code>int main ()
{
  cout << "Saludos" << endl;
}</code>
</pre>
		<p>
  		<em>
  		  Texto enfatizado
  		</em>
			<br />
  		<strong>
  		  Texto más enfatizado
			</strong>
			<br />
			Las versiones de XHTML normalmente se numeran como
			<var>x</var>.<var>x</var>
		</p>
	</body>
</html>