html 链接和图像

复制代码
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title>html_url</title>
    </head>
    <body>
        <p>
            <!-- target 四个值 
                _blank 在新窗口打开
                _self  此窗口
                _parent
                _top -->
            <a href="https://www.baidu.com" target="_blank" id="baidu">this is a url</a>
        </p>
        <p>
            <!-- 命名锚 id或name -->
            <a href="#baidu">baidu</a>
        </p>
        <p>
            <!--下载链接-->
            <a href="MyHtml.rar" >download file</a>
        </p>
        <p>
            <!-- 对齐方式默认bottom -->
            <!-- align属性 top middle top left right bottom -->
            <img src="https://www.w3school.com.cn/i/w3school_logo_white.gif" align="center" >
        </p>
        <p>
            <!-- 无法加载图像的提示信息 -->
            <img src="" alt="No Img" >
        </p>
            <!-- 图片链接 -->
        <p>
            <a href="https://www.baidu.com">
                <img src="https://www.w3school.com.cn/i/w3school_logo_white.gif">
            </a>
        </p>
    </body>
</html>
复制代码

 

posted @   lwx_R  阅读(23)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 震惊!C++程序真的从main开始吗?99%的程序员都答错了
· 【硬核科普】Trae如何「偷看」你的代码?零基础破解AI编程运行原理
· 单元测试从入门到精通
· 上周热点回顾(3.3-3.9)
· winform 绘制太阳,地球,月球 运作规律
点击右上角即可分享
微信分享提示