html知识总结
Posted yin-zhu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html知识总结相关的知识,希望对你有一定的参考价值。
1.HTML5新特性
(1)简洁的DOCTYPE:
html5 只有一个简单的文档类型:<!DOCTYPE html>,表示浏览器会按照标准模式解析。
(2)简单易记的编码类型
你现在可以在meta 标签中使用”charset”:<meta charset=”utf-8″ />
(3)脚本和链接无需type
<link rel="stylesheet" href="path/to/stylesheet.css" />
<script src="path/to/script.js"></script>
(4)更加语义化的新增标签
比如说:<article>、<section>、<aside>、<hgroup>、 <header>,<footer>、<nav>、<time>、<mark>、<figure> 和<figcaption>等
(5)视频和音频
<video width="640" height="320" preload="auto" poster="0.jpg" controls>
<source src="movie.ogg" type="video/ogg" />
<source src="movie.mp4" type="video/mp4" />
Your browser does not support the video tag.
</video>
(6)表单增强
- 新的input类型:color, email, date, month, week, time, datetime, datetime-local, number,range,search, tel, 和url
- 新属性:required, autofocus, pattern, list, autocomplete 和placeholder
- 新元素:<keygen>, <datalist>, <output>, <meter> 和<progress>
(7)canvas标签绘制2D图形
var canvas = document.getElementById(‘canvas‘);
var context = canvas.getContext(‘2d‘);context.beginPath();context.moveTo(100,100);context.lineTo(300,300);context.lineTo(100,500);context.lineWidth = 5;context.strokeStyle = "red";context.stroke();
(8)地理位置获取
2.HTML语义化
(1)什么是HTML语义化?
通过标签判断内容语义,例如根据h1标签判断出内容是标题,根据判断内容是段落、<input>标签是输入框等。
(2)为什么要语义化?
1).去掉或样式丢失的时候能让页面呈现清晰的结构
2).方便其他设备解析(如屏幕阅读器、盲人阅读器、移动设备)以意义的方式来渲染网页
3).有利于SEO
4).便于团队开发和维护,遵循W3C标准,可以减少差异化
(3)如何确定你的标签是否语义良好?
去掉样式,看网页结构是否组织良好有序,是否仍然有很好的可读性。
(4)常见的语义化标签模块
表单
<form action="" method="">
<fieldset>
<legend>登录表单</legend>
<label for="name">账号:</label>
<input type="text" id="name">
<label for="pw">密码:</label>
<input type="password" id="pw">
<input type="submit" name="登录" class="subBtn">
</fieldset>
</form>
表单域要用fieldset标签包起来,并用legend标签说明表单的用途;每个input标签对应的说明文本都需要使用label标签,并且通过为input设置id属性,在lable标签中设置for=someld来让说明文本和相对应的input关联起来。
(5)语义化标签应注意的一些问题
- 尽可能少的使用无语义的标签div和span;
- 在语义不明显时,既可以使用div或者p时,尽量用p, 因为p在默认情况下有上下间距,对兼容特殊终端有利;
- 不要使用纯样式标签,如:b、font、u等,改用css设置。
- 需要强调的文本,可以包含在strong或者em标签中,strong默认样式是加粗(不要用b),em是斜体(不用i)
以上是关于html知识总结的主要内容,如果未能解决你的问题,请参考以下文章