码迷,mamicode.com
首页 > Web开发 > 详细

HTML基础标签

时间:2017-10-01 22:59:51      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:有序列表   字体   输入框   cap   html基础   名称   账号   输入长度   table   

  1.      文件类型:<html>我的</html> (放在档案的开头与结尾)
  2.   文件主题:<title></title> (必须放在「文头」区块内)
  3.   文头:<head></head> (描述性资料,像是「主题」)
  4.   文体:<body></body> (文本主体)
  5.   标题:<h?></h?> (?表示从1到6,有六层选择)
  6.   区分:<div></div>
  7.   强调:<em></em> (通常会以斜体显示)
  8.   特别强调:<strong></strong> (通常会以加粗显示)
  9.   加粗:<b></b>
  10.   斜体:<i></i>
  11.   下标:<sub></sub>
  12.   上标:<sup></sup>
  13.   预文本格式:<pre></pre> (保留文件中空格的大小)
  14.      贴图 :<img src="图片地址" >
  15.      加入连接:<a href="所要连接的相关地址">写上你想写的字</a>
  16.   字体下划线: <u></u>
  17.      换行:<br>
  18.      分割线:<hr>
  19.      段落:<p>段落</p>
  20.      无序列表:<ul>  <li></li>  </ul>
  21.      有序列表:<ol>  <li></li>  </ol>
  22.      定义列表:<dl>  <dt></dt> <dd></dd>  </dl>
  23.      视频:<video src="地址“> </video>
  24.      音频:<audio src="地址"> </audio>
  25.      自动播放:autoplay
  26.      显示进度条:contrs
  27.      循环:loop
  28.      大段引用:<blockquote>
  29.      小段引用:<q>
  30.      跨越多个字符:<span> </span>
  31.      简写:<abbr title="全称">简称</abbr>
  32.      单选:<input type="radio" name=" " value=" ">中文
  33.      多选:<input type="checkbox" name=" " >中文
  34.      按钮:<input type="butto" value="按钮名称">
  35.      输入框提示信息:<input type="text" placeholder="显示在输入框的信息">
  36.      喜欢的颜色:<input type="color" name="color">
  37.      添加日历:<input type="date">
  38.      限制输入长度:<input type="text" maxlength="最多大输入长度">
  39.      体重:<input type="range" min="最小值" max="最大值" name="wieght">  (以进度条的形式显示)
  40.      身高:<input type="number" min="最小值" max="最大值" step="差值" value="默认值">
  41.      表单:
    <form actio="提交地址" method="get/post">
       账号:<input type="text" name=" "> 
       密码:<input type="password" name=" ">
       提交:<input type="submit"> 
       重置:<input type="reset"> 
    </form>
  42.      表格:
    <table border="1">
       <caption>内容</caption>(表格标题)
       <thead>
           <th></th>
           <th></th>          (表格头部)
           <th></th>
       </thead>
       <tbody>
           <tr>
             <td></td>
             <td></td>               (表格内容)
             <td></td>
             <td></td>
           </tr>
        </tbody>
    </table>
  43.       下拉列表:
    <select name="shengfen">
         <option value="sichuan">四川省</option>
                                 .
                                 .
                                 .
    </select>

      

  

  

HTML基础标签

标签:有序列表   字体   输入框   cap   html基础   名称   账号   输入长度   table   

原文地址:http://www.cnblogs.com/ljm-mwml/p/7618013.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!