“Cómo hacer que el texto sea en negrita en HTML” Código de respuesta

texto html en negrita

<html>
 <head>
   <title>Bold text</title>
 </head>
 <body>
   <p>Use the strong element to <strong>indicate strongly emphasized</strong> content.</p>
 </body>
</html>
Plain Penguin

html audaz

<!--Emphasized bold text. It's for content that is of greater importance-->
<strong>I'm a content</strong>

<!--Bold text. It's used to draw attention to text without indicating that it's more important-->
<b>I'm another content</b>
Ana

Fuente en negrita html

h1{
font-weight: bold;
}
Tense Thrush

Cómo hacer texto en negrita en HTML

<!DOCTYPE html>
<html>
   <head>
      <title>HTML text bold</title>
   </head>

   <body>
      <h2>Our Products</h2>
      <p>Developed 10 <strong>Android</strong> apps till now.</p>
   </body>
</html>
Dangerous Dove

Cómo en negrita en html

#bold text:
<strong> this is bold </strong>
SimTheGreat

Cómo hacer que el texto sea en negrita en HTML

we can use strong tag
<p> <strong>So this text is looking Bolt because of strong_Tag</strong> </p>
Coder's helper

Respuestas similares a “Cómo hacer que el texto sea en negrita en HTML”

Preguntas similares a “Cómo hacer que el texto sea en negrita en HTML”

Más respuestas relacionadas con “Cómo hacer que el texto sea en negrita en HTML” en HTML

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código