How To Underline Text In HTML (with Pictures) - WikiHow

Skip to ContentQuizzes
  • Home
  • Random
  • Browse Articles
  • Quizzes & Games
  • All QuizzesHot
  • Love Quizzes
  • Personality Quizzes
  • Fun Games
  • Dating Simulator
  • Learn Something New
  • Forums
  • Courses
  • Happiness Hub
  • Explore More
  • Support wikiHow
  • About wikiHow
  • Log in / Sign up
Terms of Use wikiHow is where trusted research and expert knowledge come together. Learn why people trust wikiHow 2 Easy Ways to Underline Text in CSS and HTML PDF download Download Article A user-friendly guide to underlining text with codes Co-authored by Christopher Batchelor and Rain Kengly

Last Updated: January 5, 2024 Tested

PDF download Download Article
  • Using CSS
  • |
  • Using HTML (Deprecated)
  • |
  • Video
  • |
  • Q&A
  • |
  • Tips
|Show more |Show less X

This article was co-authored by Christopher Batchelor and by wikiHow staff writer, Rain Kengly. Christopher Batchelor is a wikiHow community member and technology enthusiast. He has experience using a range of different platforms and software, and likes to keep up with updates and new features. The wikiHow Tech Team also followed the article's instructions and verified that they work. This article has been viewed 219,297 times.

Do you want to use the underline tag in HTML? In the past, the HTML code for underlining text was the simple <u></u> tag. However, this method has been abandoned in favor of the much more versatile CSS "text-decoration" style property. Using CSS ensures your code stays future-proof. This wikiHow will show you how to underline text in CSS using the current "text-decoration" method, as well as the past deprecated method of HTML.

Things You Should Know

  • The <u> tag is deprecated, meaning it technically works, but it's not recommended to use.
  • When using CSS, use the "text-decoration" CSS style property to underline text.
  • While underlining takes only a few steps, consider other methods for emphasizing text. Underlining may confuse your readers.

Steps

Method 1 Method 1 of 2:

Using CSS

PDF download Download Article
  1. Step 1 Use the "text-decoration" CSS style property. 1 Use the "text-decoration" CSS style property. The Text-decoration property sets the appearance of decorative lines on text in CSS.[1]
    • Text-decoration is shorthand for text-decoration-line, text-decoration-color, text-decoration-style, and text-decoration-thickness.
    • In older versions of HTML, this element used to be known as the "Underline" element. Using the <u> tag is deprecated, meaning it is still allowed but not recommended to use.
    • Using the "text-decoration" property is a newer, better alternative to underlining.
    • You can use Windows Notepad to create a simple CSS stylesheet.
  2. Step 2 Use the <span> tag when you want to underline a certain piece of text. 2 Use the <span> tag when you want to underline a certain piece of text. Place the opening tag along with the "text-decoration" property where you want to start underlining. Place the closing </span> where you want it to stop.[2] <span style="text-decoration: underline;">This will be underlined.</span> Advertisement
  3. Step 3 Declare HTML elements in the <style> section of your page. 3 Declare HTML elements in the <style> section of your page. You can also do this on the CSS style sheet. You can make the underlining process much easier by declaring HTML elements to style. For example, to make all of your level 3 headers underlined, add the following to your CSS style section: <html> <head> <style> h3 { text-decoration: underline; } </style> </head> <body> <h3>This header will be underlined</h3> </body> </html>
  4. Step 4 Define a CSS Class Style 4 Define a CSS Class Style. You'll be able to quickly underline at any time. In your style sheet or <style> section, you can create classes to call later. The class can have any name you'd like. <html> <head> <style> .underline { text-decoration: underline; } </style> </head> <body> You can use this class to <div class="underline">quickly underline</div> different parts <div class="underline">of your content</div> </body> </html>
  5. Step 5 Consider other methods for highlighting text. 5 Consider other methods for highlighting text. Underlining should be avoided to keep from confusing your reader. One popular method is to use the <em> tag, which italicizes text. You can use CSS to further define this tag for unique emphasis. <html> <head> <style> em { color: red; } </style> </head> <body> Anything that uses the em element will be <em>italicized (because of the default settings), as well as red</em> because of the additional style settings added above. </body> </html>
  6. Advertisement
Method 2 Method 2 of 2:

Using HTML (Deprecated)

PDF download Download Article
  1. Step 1 Avoid using the old <u></u> tags. 1 Avoid using the old <u></u> tags. This has been "deprecated", which means it works but is no longer in use or recommended. This is because HTML is not designed to style content. The <u> tag will still work, but it is now supposed to represent text that is different than the other text, such as misspelled words.
  2. Step 2 Use the <u></u> tags to underline (demonstration only). 2 Use the <u></u> tags to underline (demonstration only). There is virtually no case where you should be using this method anymore. However, it can be good to know how it was used in the event you have to update an old website. <html> <body> The old underline tag in HTML <u>allowed you to underline things quickly</u>, but it made things a mess when other style elements got involved. This is why modern underlining is accomplished using the "text-decoration" CSS element. </body> </html>
  3. Advertisement

Community Q&A

Search Add New Question
  • Question What is the CSS to underline heading image on a web page? Community Answer Community Answer You'll first need to ID your image in your HTML file, then go to your CSS file, call your ID, and in the brackets, say 'text-decoration: underline;' . Thanks! We're glad this was helpful. Thank you for your feedback. If wikiHow has helped you, please consider a small contribution to support us in helping more readers like you. We’re committed to providing the world with free how-to resources, and even $1 helps us in our mission. Support wikiHow Yes No Not Helpful 2 Helpful 4
  • Question Why is the image not showing on my mobile phone while creating an HTML file? Techdocgeek Techdocgeek Community Answer There are many potential reasons, check that you have the correct image file path for the image. If the image shows on a computer but not a mobile phone, check if the style sheet has different rules for images on mobile devices. Thanks! We're glad this was helpful. Thank you for your feedback. If wikiHow has helped you, please consider a small contribution to support us in helping more readers like you. We’re committed to providing the world with free how-to resources, and even $1 helps us in our mission. Support wikiHow Yes No Not Helpful 0 Helpful 2
Ask a Question 200 characters left Include your email address to get a message when this question is answered. Submit Advertisement

Video

Tips

  • There are always new ways to emphasize a content on a webpage other than underlining. Consider sprucing up your text with other CSS elements. Thanks Helpful 0 Not Helpful 0
Submit a Tip All tip submissions are carefully reviewed before being published Name Please provide your name and last initial Submit Thanks for submitting a tip for review! Advertisement

You Might Also Like

Create Bold and Italicized Text in HTMLHow toCreate Bold and Italicized Text in HTML Overline Characters in Microsoft WordA Guide to Overlining Characters in Microsoft Word Quote and Cite a Poem in an Essay Using MLA FormatHow toQuote and Cite a Poem in an Essay Using MLA Format Write an English EssayHow toWrite an English Essay UnderlineHow toUnderline Change Text Color in HTMLHow to Change Text Color in HTML and CSS Insert a Line in HTMLHow to Create a Horizontal Line in HTML Create Bold Text With HTMLHow toCreate Bold Text With HTML Center Text in HTMLHow toCenter Text in HTML Learn Web DesignHow toLearn Web Design Create a Simple CSS Stylesheet Using NotepadHow toCreate a Simple CSS Stylesheet Using Notepad Insert Spaces in HTMLHow to Insert Spaces in HTML & CSS: 5 Easy Ways with Examples Make Text Blink in HTMLHow to Make Text Blink in HTML: Easy Tutorial Create a Simple Web Page with HTMLHow to Create a Basic HTML Website: A Step-by-Step Guide Advertisement

References

  1. https://developer.mozilla.org/en-US/docs/Web/CSS/text-decoration
  2. https://developer.mozilla.org/en-US/docs/Web/HTML/Element/u

About This Article

CB Co-authored by: Christopher Batchelor Tech Enthusiast This article was co-authored by Christopher Batchelor and by wikiHow staff writer, Rain Kengly. Christopher Batchelor is a wikiHow community member and technology enthusiast. He has experience using a range of different platforms and software, and likes to keep up with updates and new features. This article has been viewed 219,297 times. How helpful is this? Co-authors: 12 Updated: January 5, 2024 Views: 219,297 Categories: HTML Article SummaryX

1. Open your code for editing. 2. Scroll to the text to be underlined. 3. Insert the SPAN tag before and after the text. 4. Use the "text-decoration: underline" style. 5. Define the style in your CSS. 6. Save your document. Did this summary help you?YesNo

In other languages Spanish Russian Italian French Indonesian German Dutch
  • Print
  • Send fan mail to authors
Thanks to all authors for creating a page that has been read 219,297 times.

Reader Success Stories

  • Anonymous

    Anonymous

    Dec 5, 2016

    "The alternate suggestions (along with the proper way to code it) helped."
Share your story

Is this article up to date?

Yes No Advertisement Cookies make wikiHow better. By continuing to use our site, you agree to our cookie policy. CB Co-authored by: Christopher Batchelor Tech Enthusiast Click a star to vote Co-authors: 12 Updated: January 5, 2024 Views: 219,297 Anonymous

Anonymous

Dec 5, 2016

"The alternate suggestions (along with the proper way to code it) helped." Share yours!

Quizzes & Games

Cursed Text GeneratorCursed Text GeneratorGenerateMusic Notes & Symbols TestMusic Notes & Symbols TestTake QuizDiscord Username Idea GeneratorDiscord Username Idea GeneratorGenerate NamesImpossible English TestImpossible English TestTake Quiz

You Might Also Like

Create Bold and Italicized Text in HTMLHow toCreate Bold and Italicized Text in HTMLOverline Characters in Microsoft WordA Guide to Overlining Characters in Microsoft WordQuote and Cite a Poem in an Essay Using MLA FormatHow toQuote and Cite a Poem in an Essay Using MLA FormatWrite an English EssayHow toWrite an English Essay

Trending Articles

Sub 5 to True Adam Chart: Looksmaxxing Tiers ExplainedSub 5 to True Adam Chart: Looksmaxxing Tiers ExplainedSigns a Woman is Sexually Attracted to YouSigns a Woman is Sexually Attracted to You28 Best Excuses for Getting Out of School28 Best Excuses for Getting Out of School Practice Thumb Pulling (And If You Should)How to Practice Thumb Pulling (And If You Should)

Trending Articles

What Female Body Shape Are You? How to Identify YoursWhat Female Body Shape Are You? How to Identify YoursDo You Agree with These "Hear Me Out" Character Hot Takes?Do You Agree with These "Hear Me Out" Character Hot Takes?Finish the Lyrics QuizFinish the Lyrics QuizCan Your Finger Length Tell Your Personality?Can Your Finger Length Tell Your Personality?

Games Breaking Group Chats Right Now

160+ Good Roasts to Burn Your Friends & Family Members160+ Good Roasts to Burn Your Friends & Family Members Play the Snaps Guessing GameHow to Play the Snaps Guessing Game140+ Wavelength Game Categories & Questions to Extend Your Play140+ Wavelength Game Categories & Questions to Extend Your PlayThe Ultimate Collection of Funny, Cheesy, & Romantic Rizz LinesThe Ultimate Collection of Funny, Cheesy, & Romantic Rizz Lines

Take a Quiz You Won't Stop Thinking About

What Animal Am I QuizWhat Animal Am I QuizAm I Gay QuizAm I Gay QuizHow Well Do I Know My Best Friend QuizHow Well Do I Know My Best Friend QuizAm I an Alpha, Beta, or Omega QuizAm I an Alpha, Beta, or Omega Quiz

Featured Videos

Eat GuavaHow toEat Guava Get Yellow Stains Out of White ShoesHow to Get Yellow Stains Out of White ShoesLeft Eye Twitching for Females: What Astrology Says About Eye TwitchingLeft Eye Twitching for Females: What Astrology Says About Eye Twitching50 First Date Conversation Starters to Spark a Connection50 First Date Conversation Starters to Spark a Connection

Hot Takes 🔥 🔥 🔥

Do You Agree with These Controversial Hot Takes?Do You Agree with These Controversial Hot Takes?Do You Agree with These Food Hot Takes?Do You Agree with These Food Hot Takes?Do You Agree With These Fashion Hot Takes?Do You Agree With These Fashion Hot Takes?Do You Agree with These Crazy Hot Takes?Do You Agree with These Crazy Hot Takes?

Your Daily Dose of Fun!

Which My Little Pony Am I QuizWhich My Little Pony Am I QuizMHA Quirk GeneratorMHA Quirk GeneratorWhat Food Am I QuizWhat Food Am I QuizDo I Have a Crush QuizDo I Have a Crush Quiz wikiHow
  • Categories
  • Computers and Electronics
  • Internet
  • Website and Blog Creation
  • Markup Languages
  • HTML
wikiHow Newsletter You're all set! Helpful how-tos delivered toyour inbox every week! Sign me up! By signing up you are agreeing to receive emails according to our privacy policy.
  • Home
  • About wikiHow
  • Experts
  • Jobs
  • Contact Us
  • Site Map
  • Terms of Use
  • Privacy Policy
  • Do Not Sell or Share My Info
  • Not Selling Info
  • Contribute

Follow Us

×

wikiHow Tech Help Pro:

Level up your tech skills and stay ahead of the curve

Let's go! X --436

Tag » How To Underline On Html