answersLogoWhite

0

How do you create a link for HTML?

User Avatar

Anonymous

13y ago
Updated: 8/20/2019

To create a link to another resource (a page, an external script or css file, an image, etc) inside of HTML, you use the HTML anchor tag.

The tag looks like this:

Text to Link

Technically, the above code is correct (but doesn't do anything.) Normally, you would also want to include the hrefattribute. The href (or hypertext reference) attribute contains the address of the resource to which you want the link to point.

http://www.answers.com">Great HTML Help!

You might also be interested in the title, and target attributes. See the related link for all of the anchor tag attributes.

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

How do you create the registered trademark in HTML?

You use an HTML entity, "®" (without the quotes).See related link for all HTML entities.


How do you create links in html documents?

I am going to explain how to create two forms of link because these are the two I commonly use.This form of link is if you wanted to have a link to a site already online. LINK TEXT Now to break this down for you


How is the HTML document used for making a hyperlink?

Correct syntax for creating a hyperlink in HTML is <a href="the_file_name_link.html">This is a link</a>


Why do you use HTML?

HTML is used to create web pages. Site authors use HTML to format text as titles and headings, to arrange graphics on a webpage, to link to different pages within a website, and to link to different websites.


How do you create link css to indexpage?

CSS can be made into a external page and linked to HTML. It can be done by the link tag like <link src="abc.css"></link>


How do you display a textbox for accepting password from the user in HTML?

For this, you can create a password textbox. See the link below.


How do you make glitter graphics in HTML?

You can't reli create them in HTML, javascript would be a push but I think was you are looking for is the img tag of HTML therefore: You can create gilter graphics with a genertor customise you image then save and add an image tag in your HTML page. (added a link under related links)


How do you make a link on a website?

Using HTML Open a text editor. Make sure that the content is on your website. Create your link text. Surround the link text with tags. Add the "href" attribute. Enter a website's address. Post your link


What the major problem to create a HTML?

There are no such problems to create HTML pages. All you need to do is create an HTML document and run it on a browser.


Which command is used to create HTML link?

The name of the tag used to create a link in an HTML document is the anchor tag. The anchor tag takes the hrefattribute normally, and a pair of tags is used to surround the text or image you want the link to be activated by.Great HTML Help!In this case, the text "Great HTML Help!" would be displayed to the user, and that text would be clickable. Clicking on that text would cause your browser to direct itself to http://answers.com.


Where could one find information about how to create a HTML download link?

There are many books and articles that offer lessons on how to code in HTML. There are also resources available online that can teach users how to use HTML code.


How do you make an HTML link?

Use the following to create a link, just change the italicized text:Click here to visit my link!Code BreakdownThe link is yourlink.comThe text displayed is Click here to visit my link!