¿Cómo definir texto importante usando HTML5?

En este artículo, definimos un texto importante usando la etiqueta <strong> en HTML. Es la etiqueta analizada y se utiliza para mostrar la importancia del texto. Refleja el texto en negrita.

Sintaxis:

<strong> Contents... </strong>

Ejemplo 1:

<!DOCTYPE html>
<html>
  
<head>
    <title>
        How to define important
        text in HTML?
    </title>
  
    <style>
        body {
            text-align: center;
        }
  
        h1 {
            color: green;
        }
    </style>
</head>
  
<body>
    <h1>GeeksforGeeks</h1>
  
    <h2>
        How to define important
        text using HTML5?
    </h2>
  
    <strong>
        Welcome to GeeksforGeeks!
    </strong>
</body>
  
</html>

Producción:

Ejemplo 2:

<!DOCTYPE html>
<html>
  
<head>
    <title>
        How to define important
        text in HTML?
    </title>
  
    <style>
        body {
            text-align: center;
        }
  
        h1 {
            color: green;
        }
  
        .gfg {
            font-weight: bold;
        }
    </style>
</head>
  
<body>
    <h1>GeeksforGeeks</h1>
  
    <h2 class="gfg">
        How to define important
        text using HTML5?
    </h2>
  
    <div class="gfg">
        Welcome to GeeksforGeeks!
    </div>
</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 *