HTML常用标签之超链接标签_html/css_WEB-ITnose

WBOY
Release: 2016-06-24 11:48:42
Original
1523 people have browsed it

 前面学习过了格式标签和文本标签, 本章开始学习超链接标签


三. 超链接标签

 1. 分类: 超链接标签分为相对URL和绝对URL

 2. 作用: 

相对URL: 指向站点内的某个文件(例如: 跳转到xxx.html)

绝对URL: 指向另一个站点 (例如: 跳转到http://www.baidu.com) 

 3. 属性作用:

 

 4. 代码示例:

    <!-- 超连接标签分为相对URL和绝对URL -->    <title>超连接标签</title>		<meta charset="utf-8">    <meta name="keywords" content="keyword1,keyword2,keyword3">    <meta name="description" content="this is my page">    <meta name="content-type" content="text/html; charset=UTF-8">        <!--<link rel="stylesheet" type="text/css" href="./styles.css">-->        <a href="Main.html">返回主页</a><br>  	<a href="TagFormat.html" target="_blank">格式标签</a><br><span style="white-space: pre;">  </span>  	<!-- 相对URL -->  	<a href="http://www.hao123.com">hao123</a><br><span style="white-space: pre;">      </span>  	<span style="font-family: Arial, Helvetica, sans-serif;"><!-- 绝对URL --></span><span style="white-space: pre;">  	</span>  
Copy after login

 5. 运行结果:

点击格式标签, 打开格式标签的html


点击hao123标签时, 进入此网址


source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!