AgerNic.com
WEB DEVELOPER SITE, HTML, CSS, PHP, SQL

How to create HTML link without underline

By default HTML links are underlined in most browsers. You can remove the underline on a link in a few methods:
Using style in line with HTML link,
Using CSS style in external link

Example HTML link tag to remove underline using in line style

In most browsers, HTML links will appear in the following form as default:

However you can remove underline using inline style.
HTML Link Syntax are specified in HTML using the <a> tag as <a href="url" style="declaration block as: text-decoration: none; ">Text link</a>
HTML link tag href attribute in source anchor specifies the address of the destination anchor.

Example 1:
<!DOCTYPE html>
<html>
<head>
<title>Title of button action</title>
</head>
<body>

<a href="http://www.agernic.com" style="color:#C30; text-decoration: none;">Tutorial html</a>
<a href="facebook.jpg"><img src="facebook.jpg" style="width:242px;height:72px;border:0;" alt="facebook"></a>
<a href="https://www.google.com/" style="padding:8px; color:#090; text-decoration: none;">Google Search</a>

</body>
</html>

The html cod above will display this HTML result:

Tutorial html
facebook
Google Search
Note: A link does not have to be only text. It can be an image link, button link or any other HTML element.

HTML link tag to remove underline using external CSS

First, we must build external link as style.css.

Example 2:
a:link {
  color: green; 
  background-color: transparent; 
  text-decoration: none;
}

a:visited {
  color: pink;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: red;
  background-color: transparent;
  text-decoration: underline;
}

a:active {
  color: yellow;
  background-color: transparent;
  text-decoration: underline;
}
Example 3 of index.html:
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>

<a href="http://www.agernic.com" style="color:#C30; text-decoration: none;">Tutorial html</a>
<a href="facebook.jpg"><img src="facebook.jpg" style="width:242px;height:72px;border:0;" alt="facebook"></a>
<a href="https://www.google.com/" style="padding:8px; color:#090; text-decoration: none;">Google Search</a>

</body>
</html>

This HTML code will produce the following result −
Tutorial html
facebook
Google Search


html link tag without underline
How to create HTML link without underline - html tutorial

Online Editor
ONLINE EDITOR

news templates


COLOR PICKER

news templates
This tool makes it easy to create, adjust, and experiment with custom colors for the web.


HTML Templates
news templates
Magnews2 is a modern and creative free magazine and news website template that will help you kick off your online project in style.


CSS HTML Layout
news templates
Find here examples of creative and unique website layouts.


Free CSS HTML Menu
news templates
Find here examples of creative and unique website CSS HTML menu.


HTML Img Background
HTML Image Link
HTML Image Size
HTML Text Style
HTML Text Align
HTML Text Size
HTML Text Color Style
HTML Text Color
HTML Table Color
HTML Table Row Colspan
HTML Table Width
HTML Table Style
HTML Table Border
HTML Table
HTML Font Face
HTML Font Size
HTML Font Color
HTML Headings
HTML div border color
HTML div class
HTML class container
HTML form action
HTML comment
HTML link new tab
HTML link underline
HTML link tag
HTML button action
HTML button onclick
HTML button link
HTML table style
HTML image
HTML colors
HTML div style
Text, paragraf in HTML
HTML Tags Attributes
HTML - Elements
HTML Introduction
Home HTML Tutorial
Online Editor
ONLINE EDITOR

news templates


COLOR PICKER

news templates
This tool makes it easy to create, adjust, and experiment with custom colors for the web.


HTML Templates
news templates
Magnews2 is a modern and creative free magazine and news website template that will help you kick off your online project in style.


CSS HTML Layout
news templates
Find here examples of creative and unique website layouts.


Free CSS HTML Menu
news templates
Find here examples of creative and unique website CSS HTML menu.


Upload Image, display, edit and delete i...
Login Form with Image background...
How to Create an Image with Transparent ...
Portfolio Gallery Website with filtering...
Simple pagination script PHP MySQLi...
Center Image in div...
Image Hover Overlay Fade...
Sticky image / element / div on scroll...
Responsive images...
Create rounded image in HTML CSS...
Add border around image...
Position Text Over an Image HTML CSS res...
Create a Slideshow Images Gallery...
Create a Sticky Sidebar...
Search bar using CSS HTML...
Shrink Navigation Menu on Scroll...
How to Create Accordion HTML Templates...
Dropdown menu in the navigation bar...
Responsive Top Navigation Bar with mobil...
Split horizontal navigation bar...