“Cómo en negrita Texto CSS en línea” Código de respuesta

texto en negrita CSS

.text {
	font-weight: bold;
}
k-vernooy

Cómo el texto audaz en CSS

p.normal {
  font-weight: normal;
}

p.thick {
  font-weight: bold;
}

p.thicker {
  font-weight: 900;
}
Mehrshad Farzaneh

Cómo en negrita Texto CSS en línea

<p style="font-weight:bold">Hey there</p>
Neo the Elephant

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

texto en negrita CSS

we can set text bold using css property named 'font-weight'
Syntax:
selector{
  font-weight: bold;
}
Ankur

Respuestas similares a “Cómo en negrita Texto CSS en línea”

Preguntas similares a “Cómo en negrita Texto CSS en línea”

Más respuestas relacionadas con “Cómo en negrita Texto CSS en línea” en HTML

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código