“línea en texto html” Código de respuesta

subrayar el texto en html

<!-- Using 'u' tag we can draw underline below the text in HTML -->
<p>Hello all <u>Welcome here !!!</u></p>
Ankur

Cómo subrayar el texto en HTML

<!-- Here are two ways to underline text in HTML -->

<!--Method 1-->
<p>The deer started <u>running</u> </p> 		<!--"Running" is underlined.-->

<!--Method 2-->
.myStyle {													   	<!--CSS-->
  text-decoration: underline;
}

<p>The deer started <span style="myStyle">running</span> </p> 	<!--HTML-->
chicken man

línea en texto html

<u> text </u>
Motionless Mole

subrayar texto html

<u>underline</u>
Yasin

Respuestas similares a “línea en texto html”

Preguntas similares a “línea en texto html”

Más respuestas relacionadas con “línea en texto html” en HTML

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código