answersLogoWhite

0

Usig HTML how do you make a link under a button?

Updated: 8/19/2019
User Avatar

Wiki User

12y ago

Best Answer

Button is automatically used to hyperlink so there is no need to href. You can easily place onclick option on the button.

User Avatar

Wiki User

9y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Usig HTML how do you make a link under a button?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

A doubt for you in HTML you embedded flash file in HTML In flash file for button you must give link in same page?

reword this question.


What is the HTML code for enter?

Use <br /> for a new line. Use <p></p> for a new paragraph. or if you want to link to a website or another page you put <html> <body> <a href="the page or site you want to link">button text here</a> </body> </html>


Is there any way you can make a HTML link do a button's job?

It depends on specifically what you want it to do, but you can do it a lot by using Javascript. Copy and paste both of the examples into your HTML code. This button, when clicked, will pop up a message box. <form> <input type=button onClick="alert('Done from a button')" value=Click> </form> This link, when clicked, will also pop up a message box: <A href= "javascript:alert('Done from a link')">Click on this link please.</A> So it is possible to do some of the same things from both buttons and links.


How do you put HTML link on wordpress?

When editing a Post or Page, highlight the text you want to link and then click the link button on the editor toolbar. A box will pop up where you can type or paste your link/URL.


How do you get the url link of a video?

Press the "Share" button that is under the video and there will be a highlighted link to the video which is the URL link.


How do i change my Tumblr background everytime i click on customize appearance and themes the custom HTML isn't there?

After you click on the "Customize Appearance" link, the bar on the left should show either your selected theme or "custom theme." You should see an "Edit HTML" button next to it. Clicking on that will bring you to the HTML of your theme. You can change your background on the HTML. Or instead of going to the custom HTML, you can go under Appearance and you can either upload a picture for your background or change the colour of it.


How do you open HTML document?

click on html link


How do you put links on your blog spot?

You can use "add link" function button, or simply use HTML in this way:Displaying WordsExample:NFL jerseyJust write it directly in your text, and it will be transformed directly into a text link.


How do you sign out in answers com English?

Click on the "[Sign out]" link under the big blue Answer button.


How do you put Twitter into your website?

If you are meaning putting a link to your Twitter profile, by adding a Twitter button, then simply Google "Get a Twitter Button" and you can find various results. Simply copy the HTML code that they give you and put it where you want it on your website.


How do you link rdbms page with HTML?

RDBMS cannot link directly with HTML. A third party jar is to be required to do the same.


How are hyperlinks indicated in an HTML file?

The <a> tag defines hyperlink in HTML file, which is used to link from one page to another. Default appearance of links in most browsers is as under:- An un-visited link is underlined and blue A visited link is underlined and purple An active link is underlined and red "href" is the most important attribute of <a> tag which is used to indicate the link's destination.