超级链接(外部链接、内部链接、邮件链接):a标签
href=“链接地址及文件名称”
标签的中间写超级链接的标题,可以随便写
外部链接:链接到外部网络如百度、腾讯、新浪。
内部链接:链接到电脑主机上的某个网页
邮件链接:写邮件
<html>
<head>
<tltle>设超链接</title>
<Meta http-equiv=”Content-Type” Content = “text/teml;charset=utf-8”>
</head>
<body>
<br>
<h2>外部链接</h2>
<a href="http://www.baidu.com/">百度一下</a><br>
<a href="http://www.qq.com/">腾讯</a>
<h2>内部链接</h2>
<hr color="red">
<a href="T1.html">T1</a>
<h2>邮件链接</h2>
<a href="mailto:2363517088@qq.com">写信给我吧</a>
</body>
</html>