HTML学习之超链接
HTML超链接:
href设置超链接目标地址URL
name 在html文档中建立特定位置的名称
target设置被链接的网页打开时的窗口_blank/_parent/_self/_top
accesskey设置超链接的快捷键
title设置超链接的说明文字
style运用css样式设置超链接文字样式
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>无标题文档</title> </head> <body > <marquee direction="right" behavior="alternate" bgcolor="#3333FF"> hello,great boy....... </marquee> <a href="http://www.baidu.com" accesskey="q" name="abc" title="点击进入百度" target="_top">html超链接</a> </html>
HTML超链接的锚点:是指同一页面中的不同位置链接。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>无标题文档</title> </head> <body > <marquee direction="right" behavior="alternate" bgcolor="#3333FF"> hello,great boy....... </marquee> <a name="test1.html"></a> test1.html <hr> <a href="http://www.baidu.com" accesskey="q" name="abc" title="点击进入百度" target="_top">html超链接</a> <a href="test1.html#name2" name="name1">页面内的描点一</a> <br><br><br><br><br><br><br><br><br><br><br><br> <br><br><br><br><br><br><br><br><br><br><br><br> <a href="test1.html#name1" name="name2">页面内的描点二</a> <br><br><br><br><br><br><br><br><br><br><br><br> <a href="hello.html#abc" name="cba">页面外的描点一</a> <br><br><br><br><br><br><br><br><br><br><br><br> </html>
第二个页面:
<HTML> <HEAD> <title>标题部分</title> </HEAD> <BODY> <a name="abc"></a> 这是我的第一个html页面哦 </BODY> </HTML>
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。