html a超链接标签

时间:2023-01-29 23:45:40
<!DOCTYPE html>
<html>
    <head>
        <title>a.html</title>

        <meta name="keywords" content="keyword1,keyword2,keyword3">
        <meta name="description" content="this is my page">
        <meta name="content-type" content="text/html; charset=GBK">

        <!--<link rel="stylesheet" type="text/css" href="./styles.css">-->

    </head>

    <body>
        <!--href如果不注明协议的话,默认以file方式
            thunder为迅雷自定义的协议
            target="_black"弹出一个新窗口
            mailto会打开本地发邮件的软件
            javascript:void(0)为不执行任何跳转动作,alert('')点击后弹出警告框  -->
        <a href="www.baidu.com">百度</a>
        <br>
        <hr>
        <a href="http://www.baidu.com">百度</a>
        <br>
        <hr>
        <a href="thunder://fhwoahgsagsaoh">复仇者联盟</a>
        <br>
        <hr>
        <a href="http://www.baidu.com" target="_black">百度</a>
        <br>
        <hr>
        <a href="imags/1.jpg">星空图片</a>
        <br>
        <hr>
        <a href="mailto:1191613819@qq.com">联系我们</a>
        <br>
        <hr>
        <a href="javascript:void(0)" onclick="alert('欢迎光临')">点击超链接</a>
    </body>
</html>