0%

HTML一些常见标签

2017年8月14日 下午2:36

超链接的两种用法

  1. 超连接
  2. 1
    2
    <a id="top"></a>
    <a href="#top"> </a>

特殊符号

1
2
3
4
&nbsp   空格
&copy 版权符
&lt <
&rt >

表格

1
2
3
4
5
6
7
8
9
10
11
12
13
<div align="">
<table style="" bgcolor="" border="">
<caption>aaa</caption>
<tr style="" align="">
<th style=""></th>
<th style=""></th>
</tr>
<tr style=“” align="">
<td align="center" rowspan="" >a</td>
<td colspan=""></td>
</tr>
</table>
</div>

注意

  1. 表头caption
  2. 位置:
    1. align属性
    2. style =“width:” 属性
  3. rowspan colspan
    1. 其实就是一个代替多个
    2. 原则:每行每列的个数bubian
  4. 表格中的每个标签都可设置style属性

表单

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<form action="" method="" enctype=""><!--上传流文建-->
<input type="radio" checked="checked" name="sex">
<input type="radio" name="sex">

<input type="checkbox" name="hobby"><br>
<input type="file" name="file"><br>
<input type="password" name="password"><br>
<input type="text" name="accout"><br>
<textarea cols="" rows=""></textarea><br>
<select name="">
<option value="1"></option>
<option value="2" selected="selected"></option>
<option value="3"></option>
</select><br>
<button>普通按钮</button>
<input type="submit" name="" value="提交按钮">
<input type="reset" name="" value="重置按钮"><br>
<input type="image" name="" src=""> <br><!-- 有提交表单的能力 不被button控制 -->
<input type="hidden" name="" value=""> <!-- 提交value属性值 -->

注意:

  1. Radio 一定要设置相同的name
  2. Name的值使用来提交是作为key值的
  3. get和post都有请求体
  4. 超链接是get请求
  5. 默认值添加方式
    1. value
    2. placeholder

框架标签

常用于映入独立资源、重复资源或者控制单元资源

1
2
3
<frameset>
<frame>
<iframe>

标签的target属性:

  1. 用来指定当前src中所指向的内容,在哪个框架中显示
  2. target = 框架的name属性

Html5的一些文字了解

目的:

不用搭配那么多的css 和js
减少对库的依赖性

html改进

  1. 语义特性
  2. 本地存储
  3. 设备兼容
  4. 连接特性
  5. 网页多媒体
  6. 三维,图形及特效特效
  7. 性能集成特效

缺点

  1. 安全
  2. 完善性
  3. 技术门槛高
  4. 性能
  5. 兼容性 不是所有的浏览器都用html

改变

  1. 语法规则
  2. 标签小写
  3. 属性值
  4. 删标签
  5. 增标签
    1. 结构性标签
    2. 块级标签
    3. 行内标签
    4. 多媒体标签
    5. 交互性标签
    6. 表单的新功能
    7. 新增属性
    8. 其他功能
      1. 地理定位 用在移动端
      2. 本地储存
      3. 桌面提醒
      4. 本地数据库 chrome
      5. canvas画布