URLs in Anchor Tags

Classic programmed-learning exercises, refreshed for modern Java and presented in the current MrStyner.com portfolio style.

Modern Java noteThis archive has been refreshed for Java 25 LTS. Core language concepts remain useful, while outdated setup instructions and browser-era Java are labeled or replaced. Java 26 is the current feature release; Java 25 is used here as the stable teaching baseline.
go to previous page   go to home page   go to next page        

Answer:

www.yahoo.com

URLs in Anchor Tags

To link from a Web page to a Web page on a distant computer, use the full URL in the anchor tag. Examples:

<a href="http://www.yahoo.com"> Yahoo Home Page </a>

<a href="https://dev.java/"> The Sun Java Tutorial. </a>

<a href="http://chortle.ccsu.edu/java5/Notes/AppendixA/htmlPart2_15.html> 
    A familiar Web page</a>

The text following href= is the URL of the page you wish to link to. The text between the two tags will appear colored in the browser like this: Yahoo Home Page . When users click on the link, the browser will go to the new location.

Play with the following Web page to see how its hyperlinks work.

Add a few of your own favorite sites, then click to see what the HTML does.

QUESTION 15:

Add the following links to the list of useful Java resources:

http://java.about.com/compute/java  

http://javaworld.com

http://w3schools.com