<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>超链接的应用</title> <style type="text/css"> h1{background: #9999cc;color: white;padding: 10px;height: 50px;text-align: center;} img{width: 70px;height: 45px;} </style> </head> <body> <h1>超链接的应用</h1> <h3><a href="02.pptx">1. HTTP下载-文件02.ppt</a></h3> <h3><a href="ftp://ftp.pku.edu.cn">2.FTP下载-北京大学FTP站点</a></h3> <h3>3. 图像超链接 <a href="http://www.baidu.com//"> <img border="0" src="bd_logo1.png"/> </a> </h3> <h3>4. 邮件超链接-有问题可以给我 <a href="mailto:1993626066@qq.com?cc=844107097@qq.com&subject=Hello%20again&body=同学你好: 恭喜你们被Alibaba/Tecent/Baidu联合录取!">发送邮件</a></h3> <p>应该使用%20来替换单词间的空格, 这样浏览器就可以正确的显示文本了.</p> </body> </html>