Search
 
SCRIPT & CODE EXAMPLE
 

HTML

underline text in html

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

how to underline text in 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-->
Comment

line under text html

<u> text </u>
Comment

underline text html

<u>underline</u>
Comment

underline html

<!-- The <ins> tag makes a certain part of text underlined, in contrast to
	 the <del> tag which strikes through certain parts of text -->

<h1> My favorite animals are <ins> cats </ins> </h1>
Comment

PREVIOUS NEXT
Code Example
Html :: faire un footer avec bootstrap 
Html :: html repeating video 
Html :: HTML Image Maps 
Html :: bootstrap carousel dark 
Html :: divider bootsrap 
Html :: html practice exercises 
Html :: html a href tooltip 
Html :: change color of icon css 
Html :: text without html laravel function 
Html :: what does html stand for 
Html :: bootstrap input 
Html :: video player html 
Html :: select2 html example 
Html :: <p tag html 
Html :: remove cell border css 
Html :: how to use different font size in same line in html 
Html :: html login and registration form 
Html :: add color to hr tag 
Html :: nuclear bomb 
Html :: html elements 
Html :: dl in html 
Html :: date of birth select box in html 
Html :: import ionicons 
Html :: node mailer send html 
Html :: storybook fonts 
Html :: unordered list html 
Html :: creating a table in html 
Html :: best html emmet extension for vs code 
Html :: html hex color 
Html :: alpine hide element after set time 
ADD CONTENT
Topic
Content
Source link
Name
9+7 =