answersLogoWhite

0

How do you create anchor tag without underline?

Updated: 8/20/2019
User Avatar

Wiki User

12y ago

Best Answer

Use the following style code in the <head> of your page:

<style type="text/css">

a { text-decoration: none;

}

</style>

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you create anchor tag without underline?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you get hypertext to work?

You can get hypertext to work via anchor tag. The tag will cause to create a hyperlink to work on other page.


What is an anchor in a webpage?

The HTML anchor tag is a tag that looks like this: It's most often used to produce links using the href attribute, eghttp://wiki.answers.com">Example.com!The text inside the tag (or an image if you'd like) is what becomes "clickable." By default, underlined and blue in most browsers.


what tag do you use to create a link?

The anchor tag is the one used to create a hyperlink in HTML. The base of the tag is the letter "a" and it requires are least one attribute--href--which tells the browser the address to which the link points.The href attribute be a full URL with the protocol, or it can be relative to the current document. To link to a page called "landing.html" our anchor tag might look something like this.Click Here!The text contained after the initial tag and before the closing () will be the "clickable" text, and the browser will render it that way (normally blue, and underlined, by default.)You can also place an image tag inside the anchor, and that will turn the image into a link.


What html tag are used to create hyperlink?

The anchor tag is the proper tag (actually, the only tag) to use to create a hyperlink. The tag looks like this.The link textYou can also include images in the link, and a few other HTML elements. The href parameter mean "hypertext reference" and has to contain the address of the file you want to link to. You can link to any file, although URLs for HTML files are the most commonly used.The anchor tag can also be used to create "jump links" within a given page. To do that, you'd assign the anchor tag an ID, and then use another anchor tag to point at #ID. For instance:Then elsewhere in the same document:Jump to the TargetYou can also jump to that specifc part of a page from another page by appending the #ID bit to the end of the URL.


What languageis used to create hypertext?

HTML itself can be used to create Hypertext. It can be created using the anchor tag which is shown by &lt;a&gt;.


What is the A HTML tag called?

The HTML tag is called the "anchor" tag.


How do you put links into a myspace bulletin?

The Anchor Tag and the Href Attribute HTML uses the (anchor) tag to create a link to another document. An anchor can point to any resource on the Web: an HTML page, an image, a sound file, a movie, etc. The syntax of creating an anchor: Text to be displayed The tag is used to create an anchor to link from, the href attribute is used to address the document to link to, and the words between the open and close of the anchor tag will be displayed as a hyperlink. This anchor defines a link to W3Schools: Visit W3Schools! The line above will look like this in a browser: Visit W3Schools!


How do you make anchor tags work on a tumblr page?

Anchor tag is the one that sends hyperlink to other pages. The anchor tag in HTML can be defined as &lt;a&gt;.


What does the A tag stand for?

ANCHOR


Where is the underline text command?

To underline text, you can use HTML &lt;u&gt; tag. Enclose the text you want to underline within &lt;u&gt; and &lt;/u&gt; tags. For example: &lt;u&gt;Underline this text&lt;/u&gt;.


What is the attribute that is used to create a clickable link on the page?

The method is called a hyperlink. You create the link with an anchor tag. Here is an example: &lt;a href="page.html" title="My Page"&gt;Clickable Link&lt;/a&gt;.


What are the names of 3 tags for HTML and what do they do?

The paragraph tag, Text, is used to set off blocks of text as paragraphs.The anchor tag, Text, is used to create hyperlinks from a document to another resource.The canvas tag, creates an element that can be drawn on using JavaScript.