美文网首页
HTML初学

HTML初学

作者: 浅巷墨漓丶 | 来源:发表于2016-03-08 11:10 被阅读0次

    HTML 标题

    在线测试
    HTML 标题(Heading)是通过 < h1 > - < h6 > 等标签进行定义的。
    例如:

    <h1>This is a heading</h1>
    <h2>This is a heading</h2>
    <h3>This is a heading</h3>
    

    HTML 段落

    在线测试
    HTML 段落是通过 < p > 标签进行定义的。
    例如:

    <p>This is a paragraph</p>
    <p>This is another paragraph.</p>
    

    HTML 链接

    在线测试
    HTML 链接是通过 < a > 标签进行定义的。
    例如:

    <a href="http://www.baidu.com">This is a link</a>
    

    注释:在 href 属性中指定链接的地址。标签与标签夹着的是名字。

    HTML 图像

    在线测试
    HTML 图像是通过 < img > 标签进行定义的。
    例如:

    <img src="w3school.jpg" width="104" height="142" />
    

    src 后面接着图片的名字,width是宽,height是高。

    相关文章

      网友评论

          本文标题:HTML初学

          本文链接:https://www.haomeiwen.com/subject/sxrzkttx.html