Up
|
Japanese
Making Links
Created : 1997-02-03
Updated: 1998-10-10
Suppose that two pages A and B correspond to files index.html (A) and index.html (B), respectively, and that you want to realize the process:
If one clicks a button in the page A, then the page B appears.
All you need to do is to write the following line:
<a href="xxxxxx/index.html">yyyyyy</a>
Here xxxxxx/index.html is the relative path from index.html (A) to index.html (B), and yyyyyy is an expression of the link button.
Explanation
Relative path
Button
yyyyyy is either a string of characters or an
inline image
.