⛏️ text-decoration:none
By default when we create a hyperlink we have an underline to it, If you have an anchor tag in HTML, and you do not want it to have an underline, then it is achievable using text-decoration CSS attribute.
A link with an underline.
Code:
<a href="http://code2care.org">http://code2care.org</a>
Result:
A hyperlink without a underline - by using: text-decoration:none
Code:
<a href="http://code2care.org" style="text-decoration:none">http://code2care.org</a>
Result:
http://code2care.orgMore Posts related to Html,
- remove div vertical scroll
- Create HTML button that looks like a href hyperlink
- Comprehensive 256 Ascii code table with Html Hex IBM Microsoft Key
- HTML5 HELLO WORLD Example
- Get HTML table td, tr or th inner content value with id or name attribute
- Adding Sub Headings to Bootstrap Header tags
- What is the doctype for HTML5?
- Chessboard with pieces using pure HTML and CSS
- Hyperlink in html (anchor tag) without a underline
- W3 : character data is not allowed here html validation error
- Fibonacci series from 1 to 500 table
- 9 Border to DIV Element in HTML Examples
- How to add multiple spaces between html page text
- How to turn off autocomplete in input fields in HTML Form
- Default speed of Marquee tag : SCROLLAMOUNT
- How to word wrap in HTML
- Force convert HTML text input to upper case
- HTML5 CSS3 Color Codes List
- How to remove old 404 pages ulrs from Google crawler
- reCaptcha Verification expired. Check the checkbox again
- All directional arrows codes for HTML
- Align html element at the center of page vertically and horizontally
- How to make a div tag clickable
- Remove Html head and body tags from ckeditor source
- Auto Refresh Webpage after every x Second or Minute using Meta Tag?
More Posts:
- Merge-SPlogfile PowerShell - SharePoint Correlation ID error - SharePoint
- Check help on commands while being on sftp> prompt - FTP
- How to know the Docker Engine Version - Docker
- NewApi error : Finds API accesses to APIs that are not supported in all targeted API versions - Android
- list of jars required for hibernate 4.x.x - Java
- Get Device Screen Width and Height using javaScript - JavaScript
- How to get the Android OS installed version programmatically - Android
- Native getClass() method from java.lang.Object Class Explained with examples. - Java