Tutorials | Getting Started | Web page
Related articles:
Learn the basics of Web Authoring Tutorial (1) Web authoring
Learn the basics of Web making (2) typography labels
Learn the basics of Web page creation tutorial (3) Font label
Learn the basics of Web page creation tutorial (4) Image label
Learn the basics of Web page creation tutorial (5) Image label
Connections inside a Web page
1. How to use :
- First sign at the junction: <a name= "Here" > this is the point you want to connect to </A>
- Set Connection: <a href= "#here" > Connection </A>
2. Label explanation : Sometimes, when the content of a page is many, we can use the internal connection of the Web page, so that users quickly find information. The principle is only: to make a mark at the junction, and then, when connected to find the mark, you can quickly find information. It's simple!
3. Examples of Use :
Example |
First step |
Second Step |
Connections inside a Web page |
<a name= "1" > the location of the connection </A> |
<a href= "#1" > Links inside the page </A> |
Connections outside of a Web page |
<a name= "2" > the location of the connection </A> |
<a href= "#2" > External connections </A> |
Connections outside of a Web page
1. Label Explanation : The connection goes outside, may expand your website the practicality and the enrichment, also because of this function, only then created the WWW colorful world. Because of the variety of services on the network, different services have different connection methods.
2. Examples of Use :
Web Connection |
New Long |
<a href= "http://www.sina.com" > Sina </A> |
e-Mail Connection |
Write a love letter to a friend |
<a href= "mailto:web@webjx.com" > Write love Letters to friends </A> |
FTP connection |
Download file |
<a href= "ftp://ftp.ntu.edu.tw" > Download archive </A> |
News Connection |
News on line |
<a href= "http://www.alixixi.com/web/a/news:news.netvigator.com" > Online news </A> |
Gopher connection |
SeedNet Gopher |
<a href= "gopher://gopher.seed.net/" >seednet gopher</a> |
BBS Connection |
Forum |
<a href= "telnet://bbs.webjx.com/" > Forum </A> |
Parameters for the connection label
1. How to: Add the Target=_ parameter after the connection
2. Label explanation : The connection parameter is not many, the common probably is the target this parameter, Target's meaning is "the goal", is the webpage connection target, this parameter is especially important in the frame!
3. Examples of Use :
Tag Code |
target= Frame Name |
Effect |
This is also mentioned in the "frame tag" and is only used in frames (box windows or frame). Normally, the framework has its own name, so we can use this tag to specify which frame the content of the connection is displayed in. |
Tag Code |
Target=_blank |
Effect |
The content of the page that will be connected is opened in a new browser window. |
Tag Code |
Target=_parent |
Effect |
The page content that will be connected as the previous page of the file. |
Tag Code |
Target=_self |
Effect |
The written contents of the connection are displayed in the current window. |
Tag Code |
Target=_top |
Effect |
This parameter solves the new connected page content, is beset by the frame, uses this parameter, will be able to display the entire page again to connect the page content. |