El elemento <em>
El elemento <em> se usa para enfatizar el texto. El elemento
requiere tanto un comando de apertura como uno de cierre. El elemento es un elemento
inline. El contenido del elemento es renderizado. Ejemplo:
<html>
<head>
<title>El elemento em</title>
</head>
<body>
<p>HTML es
<em>fácil</em>
de aprender.<br
/>
</p>
</body>
</html>
El elemento <em> soporta el atributo estilo. Ejemplo:
<html>
<head>
<title>El elemento em</title>
</head>
<body>
<p>HTML es
<em
style="font-weight: bold;
color: #000000; font-style: normal;">fácil</em> de aprender.<br
/>
</p>
</body>
</html>
|