answersLogoWhite

0

HTML links are formed using the HTML anchor element. The element has both an opening and closing tag, and (when being used to create a link) at least one attribute: href.

Here's an example that would link to a page called "page.html"

<a href="page.html">Linked Text</a>

The above would produce a link in which the "Linked Text" would be clickable (and blue, and underlined by default in most browsers.)

Other useful attributes for the anchor tag are title (which creates a little popup when a user hovers telling them the title of the page they're heading to), target (which can be used to cause a link to open in a separate tab/window or frame) and id (which is used to create "jump links" that allow a user to mover around within the page.)

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

Hoew to conect one page to another page in aspnet code?

page1.aspx page2.aspx page3.aspx Inside the &lt;head&gt; of page1.aspx you would put HTML Code: &lt;link rel="next" href="page2.aspx"&gt; , inside the &lt;head&gt; of page2.aspx you would put HTML Code: &lt;link rel="next" href="page3.aspx"&gt; and HTML Code: &lt;link rel="previous" href="page1.aspx"&gt; and in page3.html you would put HTML Code: &lt;link rel="previous" href="page2.aspx"&gt;


How do you put photobucket images on your MySpace profile?

use the link that says: HTML Code- websites and blogs


Picture is in a HTML website how do you link a video to it?

you will put an &lt;a href="video/video.flv"&gt; tag in front of the image code and &lt;/a&gt; after the image code. You will put your video destination in the place of video/video.flv


Which link do you use from PhotoBucket to put an Image on your profile?

To add an image to your profile, just copy and paste the Direct Link onto it. The system will then change it into HTML code, for it to display properly. There is no need to use HTML or BBCode.


Can you put a clipart on a webpage in HTML so it shows without it being a link?

Yes you can put a clipart picture on a HTML web page as a link Yes , you can put a clipart picture on an HTML webpage without it being shown as a link by this code: &lt;IMG SRC="whatever you name your picture .and whatever the type of file it is"&gt; For the type of files here are some examples: .jpg, .gif, .wif etc.


What is the HTML code for enter?

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


How do you put skincraft on your website?

Answer By Descrete_101:First You Can Use The HTML To Put On Your Site EASY! The HTML Code Is: Now, If You Want To Do It A More Complex Way Then Download The File. I Dont Remember The File Link But If I Ever Do I Will Tell You!


Can ASP code be put in HTML?

ASP can't be put 'in' HTML. ASP can be written in files where HTML is written. ASP can also output HTML.


How can you put a country code in HTML?

Country code can be put in an input type box. You could put a required attribute for a country code.


How do you turn pictures into an HTML code?

&lt;img src="link for picture"&gt;


How do you Put jspcode into PHP?

It is not possible to directly put jsp code in php, You could look into json and xml which allow data transfer between different technologies. Alternatively you could send data from jsp code to html and via html to php. Look at the link below. It may help somewhat


How do you put a link on a website?

Hyperlinks can be inserted in web pages with a small HTML code as exampled below. &lt;a href="http://www.example.com/"&gt;Anchor Tag Text&lt;/a&gt;