一些常用的HTML标签

<!DOCTYPE html>
<html>
    <head>
         <meta charset="utf-8">
         <title>基本HTML框架</title>
    </head>
    <body>
        <h1>一级标题</h1>
        <h2>二级标题</h2>
         ...
         <h6>六级标题</h6>
         <div>最常用的块标签</div>
         <p>段落</p>
         <span>比较常用的行标签</span>
         <ul>有序列表
                <li>有序列表项</li>
         </ul>
        <a href=">创建超级链接</a>
        <hr>水平线
        <br>换行
        <img>插图片
        <input type="button">点击按钮
        <input type="text">输入框
         <script>javascript</script>
    </body>
</html>    

  

原文地址:https://www.cnblogs.com/haotian-dada666/p/5635660.html