How to create links without underlines using HTML

Asked By 220 points N/A Posted on -
qa-featured

I am creating a simple web page using an HTML tag. It has many links that are listed at the bottom of the page. I want it not to be underlined when creating links so it will look like an ordinary text. So how can I make a link without being underlined?

SHARE
Best Answer by Liza Garnet
Best Answer
Best Answer
Answered By 0 points N/A #126220

How to create links without underlines using HTML

qa-featured

Using HTML is an old way for building web pages. HTML tags are quite difficult to use at first but later on you will get to know the different usage of these tags, it is very useful when modifying a certain web page on the internet like “Blogs” that allow you to change its page settings using HTML codes. ASP, PHP etc. are the new tools that you can use in making a simple WEB or an Application WEB. In ASP which I use in making WEB applications lets you drag and drop the controls to your form.

If you want to create a link in HTML without an underline you must put the following codes inside or within the <head> and </head> HTML tag on the page. This is the tag.

<style href>a {text-decoration: none}</style>

If only some links on your page that you want to have no underline then you must put this code inside or within the <body></body> tags. For example see below:

<p><a href=http://www.nounderline.com style=”text-decoration: none”>No Underline</a></p>

Answered By 0 points N/A #126221

How to create links without underlines using HTML

qa-featured

Hi Bruce,

There are number of ways in manipulating Tags and Elements in HTML. It can be done by using CSS via div. There are two known commonly used CSS; they are the inline and external. In an inline CSS, the code is being embedded to the HTML tag such as the "style" while the external CSS is done in a separate file with a .CSS extension. External CSS is invoked via link rel that will be inserted to a HTML tag in your HTML file by specifying the css file name that has created or to be used.

Anyways, if you are looking for a simple example in creating links without an underline. First, you have to initialize the <style> between the <head> and </head> tags. This way, all the links throughout your page will not show a link with underline unless you will not use it in a certain link.

To be precise, please review this code given:

For more details please visit here–  

Related Questions