zoukankan      html  css  js  c++  java
  • html常见标签使用

    <body>
       <!--标题标签-->
       <h1>11111111111111111111111</h1>
       <h2>11111111111111111111111</h2>
       <h3>11111111111111111111111</h3>
       <h4>11111111111111111111111</h4>
       <h5>11111111111111111111111</h5>
       <h6>11111111111111111111111</h6>
    
       <div>111111123233232233232323232</div>
       <div>
          111111123233232233232323232
           <input value="张三">
           <input type="color">
           <input type="date">
           <input type="radio">
           <input type="checkbox">
           <div>
               <div>
                   <div>
                       <div>
                           <div>
                               fefqerfr2fg342f42f245ff24
                           </div>
                       </div>
                   </div>
               </div>
           </div>
       </div>
       <div>111111123233232233232323232</div>
       <div>111111123233232233232323232</div>
       <!--按钮标签-->
       <button>百度一下,你就不知道</button>
       <!--输入框标签-->
       <input placeholder="请输入姓名">
       <input value="张三">
       <input type="color">
       <input type="date">
       <input type="radio">
       <input type="checkbox">
       <input type="file">
       <!--段落标签-->
       <p>dewudgewuydgeuwygdeuwygdeuwygdeuwygduyewg</p>
       <p>dewudgewuydgeuwygdeuwygdeuwygdeuwygduyewg</p>
       <p>dewudgewuydgeuwygdeuwygdeuwygdeuwygduyewg</p>
       <!--超链接标签-->
       <a href="http://baidu.com" target="_blank">百度一下</a>
       <a href="http://www.520it.com" target="_blank">小码哥</a>
       <!--图像标签
          相对路径:资源都在当前项目中
          绝对路径:http://  https:// ftp://  file://
       -->
       <img src="https://www.baidu.com/img/bd_logo1.png" alt="ceverv">
       <img src="img/7.jpg" width="10%" height="15%">
       <!--列表标签-->
       <ul>
           <li>11111</li>
           <li>22222</li>
           <li>33333</li>
       </ul>
       <!--容器标签-->
       <div>111111123233232233232323232</div>
    
    </body>
  • 相关阅读:
    Android事件分发
    Android 内存泄露
    Android IPC介绍
    Android垃圾回收机制
    (C#)为应用程式设定运行权限(System.Security类下的GenericIdentity,GenericPrincipal,PrincipalPermission)
    http请求
    VS 的链接库的设置
    在VS中添加lib库的三种方法
    二分法查找数组
    Remove Duplicates from Sorted Array II
  • 原文地址:https://www.cnblogs.com/yintingting/p/4571833.html
Copyright © 2011-2022 走看看