欢迎使用CSDN-markdown编辑器

来源:互联网 发布:相似度对比软件 编辑:程序博客网 时间:2024/06/03 20:06

常用标签及介绍

  • 常用标签及介绍
    • 锚点
    • 定义列表
    • table表格
    • form表单
      • 单选按钮
      • 多选按钮
      • 文本域

锚点

a标签内href=”n”—–>另外一个标签id=”n”

Alt text

定义列表

<dl><!-- 定义列表-->    <dt></dt>    <!--定义标题-->    <dd></dd>    <!--定义摘要--></dl>

table表格


  • table表格
    • caption标题
    • thead 表头
      • tr>th(标题单元格)
    • tfoot表尾
      • tr>td(普通单元格)
    • tbody表身
      • tr>td(普通单元格)

tbody可以有多个
如果table用来搭建结构,只需要写tr和td

form表单

用来获取用户信息

单选按钮

<input type="radio">

<lable></lable>用来描述表单元素功能

多选按钮

<input type="checkbox">

文本域

<textarea></textarea>

  • 属性:
    • maxlength
    • minlength
0 0