¿Cómo enfatizar texto en un documento usando HTML5?

En este artículo, enfatizaremos el texto en un documento HTML usando el elemento <em> en el documento. Es una etiqueta de frase y se usa para enfatizar el contenido del texto.

Sintaxis:

<em> Contents... </em>

Ejemplo 1:

<!DOCTYPE html>
<html>
  
<head>
    <title>
        Emphasize text in 
        an HTML document
    </title>
</head>
  
<body>
    <h1>GeeksforGeeks</h1>
  
    <h2>
        HTML5: How to emphasize
        text in an HTML document?
    </h2>
  
    <em>Emphasized text content</em>
</body>
  
</html>

Producción:

Ejemplo 2:

<!DOCTYPE html>
<html>
  
<head>
    <meta http-equiv="Content-Type"
        content="text/html; 
        charset=iso-8859-1">
  
    <title>
        HTML5: How to emphasize
        text in an HTML document?
    </title>
</head>
  
<body>
    <h1>GeeksForGeeks</h1>
  
    <h2>
        HTML5: How to emphasize 
        text in an HTML document
    </h2>
      
    <strong>
        <em>HTML CSS Exercise</em>
    </strong>
</body>
  
</html>

Producción:

Navegadores compatibles:

  • Google Chrome
  • explorador de Internet
  • Firefox
  • Ópera
  • Safari

Publicación traducida automáticamente

Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *