Blogger Information
Blog 16
fans 0
comment 0
visits 12104
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
HTML常用标签
大碗宽面
Original
1060 people have browsed it

一、HTML文档标签


1.

文档声明为HTML 标识网页是遵循html5语法规范

2.

html网页中根标签,一个页面中有且只有一个根标签,网页中的所有内容都写在根标签的内部

3.

网页的头部,head标签中的内容,不会在页面中直接显示

4.

使用meta来设置页面的字符集

5.Document

网页的标题

6.

网页的主体,网页中所有的可见内容,都写在body中


二、html常用标签

1.标题标签h1~h6共六级标题h1最大 h6最小

       
  1. 一级标题标签

  2. 二级标题标签

  3. 三级标题标签

  4. 四级标题标签

  5. 五级标题标签
  6. 六级标题标签

2.段落标签p,块级元素 独占一行

       
  1. 2021/09/19

  2. 中秋节放假三天

  3. 几许人是惊世才/>
  4. 不见当年李太白

3.链接标签a跳转到指定的链接

       
  1. href="//m.sbmmt.com/">php中文网

4.无序列表ul,li定义无序列表

       
    • item
    • item
    • item
    • item

5.图像标签img

       
  1. src="1.png"alt=""title=""width="200px"height="200px"/>

6.有序列表ol,li定义有序列表

       
    1. item
    2. item
    3. item
    4. item

7.自定义列表dl,dt,dd

       
  1. 四大名著
  2. 西游记
  3. 四大名著
  4. 红楼梦
  5. 四大名著
  6. 水浒传
  7. 三国演义

8.表格table,tr,td

       
  1. border="1"width="500px"height="200px">
  2. x
  3. x
  4. x
  5. x
  6. colspan="3"align="center">横线水平合并3个X
  7. rowspan="3"align="center">向下垂直合并三个X
  8. x
  9. x
  10. x
  11. x
  12. x
  13. x

9.表单form

1.文本域text

       
  1. action=""method="">
  2. 账号:type="text"/>

2.密码password

       
  1. action=""method="">
  2. 密码:type="password"name="pwd"/>

3.单选框radio

       
  1. action=""method="">
  2. type="radio"name="sex"value="boy"/>
  3. type="radio"name="sex"value="gril"/>

4.多选框checkbox

       
  1. action="">
  2. 学生:type="checkbox"name="state"value="xuesheng"/>
  3. 在职:type="checkbox"name="state"value="zaizhi"/>
  4. 无业:type="checkbox"name="state"value="wuye"/>

5.提交按钮submit,button

       
  1. action="">
  2. 账号名称:type="text"name="user"/>
  3. type="submit"value="submit"/>
  4. type="button"value="按钮"/>

6.重置按钮reset

       
  1. action="">
  2. 账号:type="text"/>密码:type="password"/>
  3. type="reset"value="重置"/>

9.下拉框select

       
  1. name=""id="">
  2. value="">北京
  3. value="">上海
  4. value=""selected="selected">广州
  5. value="">深圳

Correcting teacher:PHPzPHPz

Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply withNews Comment Service Agreement
0 comments
Author's latest blog post
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!