HTML超链接
使用超链接,可以让网页连接到另外一个页面
<html> <head> <title>第一个网页</title> </head> <body> ************超链接案例*************</br> <a href="hello.html">老鼠爱大米</a></br> <a href="http://www.w3school.com.cn">W3School</a> </body> </html>
target的属性:target替换原页面
<a href=url target=_self>本窗口
<a href=url target=_blank>新窗口
<a href=url target=_parent>父窗口
<a href=url target=_top>整个浏览器窗口
<html> <head> <title>第一个网页</title> </head> <body> ************超链接案例*************</br> <!--_blank打开新页面 _self替换当前页面—--> <a href="hello.html" target="_blank">老鼠爱大米</a></br> <a href="hello.html" target="_self">12345</a></br> <a href="http://www.w3school.com.cn" target="_blank">W3School</a> <a href="http://202.194.239.122:8080/my/hello.html" target="_self">hello</a></br> <!--需要事先配置好outlook--> <a herf="mailto:hanshunping@tsinghua.org.cn" target="_blank">给管理员写信</a> </body> </html>