本文轉載於:猿2048網站HTML5新特性,語義化php
HTML5 只有一個簡單的文檔類型:<!DOCTYPE html>
,表示瀏覽器會按照標準模式解析。css
你如今能夠在meta 標籤中使用」charset」:<meta charset=」utf-8″ />
html
<link rel="stylesheet" href="path/to/stylesheet.css" /> <script src="path/to/script.js"></script>
好比說:<article>、<section>、<aside>、<hgroup>、 <header>,<footer>、<nav>、<time>、<mark>、<figure> 和<figcaption>
等前端
<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>
<keygen>, <datalist>, <output>, <meter> 和<progress>
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();
經過標籤判斷內容語義,例如根據h1
標籤判斷出內容是標題,根據<p>
判斷內容是段落、<input>
標籤是輸入框等。面試
1).去掉或樣式丟失的時候能讓頁面呈現清晰的結構
2).方便其餘設備解析(如屏幕閱讀器、盲人閱讀器、移動設備)以意義的方式來渲染網頁
3).有利於SEO
4).便於團隊開發和維護,遵循W3C標準,能夠減小差別化canvas
去掉樣式,看網頁結構是否組織良好有序,是否仍然有很好的可讀性。瀏覽器
表單ide
<form action="" method=""> <fieldset style="border: none"> <legend style="display: none">登陸表單</legend> <p><label for="name">帳號:</label><input type="text" id="name"></p> <p><label for="pw">密碼:</label><input type="password" id="pw"></p> <input type="submit" name="登陸" class="subBtn"> </fieldset> </form>
表單域要用fieldset標籤包起來,並用legend標籤說明表單的用途;每一個input標籤對應的說明文本都須要使用label標籤,而且經過爲input設置id屬性,在lable標籤中設置for=someld來讓說明文本和相對應的input關聯起來。post
《編寫高質量代碼——Web前端開發修煉之道》第三章——高質量的HTML網站