最新文章專題視頻專題問答1問答10問答100問答1000問答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
問答文章1 問答文章501 問答文章1001 問答文章1501 問答文章2001 問答文章2501 問答文章3001 問答文章3501 問答文章4001 問答文章4501 問答文章5001 問答文章5501 問答文章6001 問答文章6501 問答文章7001 問答文章7501 問答文章8001 問答文章8501 問答文章9001 問答文章9501
當前位置: 首頁 - 科技 - 知識百科 - 正文

html6的展望與代碼

來源:懂視網(wǎng) 責(zé)編:小采 時間:2020-11-27 15:33:30
文檔

html6的展望與代碼

html6的展望與代碼:HTML5 是 HTML 語言最受歡迎的版本之一,它支持音頻和視頻、離線存儲、移動端、和標簽屬性等等。還提供了<article>, <section>, <header>這樣的標簽來幫助開發(fā)者更好地組織頁面內(nèi)容。然而 HTML5 規(guī)范仍然沒有最后定稿,并且它并不是
推薦度:
導(dǎo)讀html6的展望與代碼:HTML5 是 HTML 語言最受歡迎的版本之一,它支持音頻和視頻、離線存儲、移動端、和標簽屬性等等。還提供了<article>, <section>, <header>這樣的標簽來幫助開發(fā)者更好地組織頁面內(nèi)容。然而 HTML5 規(guī)范仍然沒有最后定稿,并且它并不是

HTML5 是 HTML 語言最受歡迎的版本之一,它支持音頻和視頻、離線存儲、移動端、和標簽屬性等等。還提供了<article>, <section>, <header>這樣的標簽來幫助開發(fā)者更好地組織頁面內(nèi)容。然而 HTML5 規(guī)范仍然沒有最后定稿,并且它并不是一個真正意義上的語義標記語言。

HTML6 展望

你有沒有曾經(jīng)希望能在 HTML 中使用自定義標簽?比如:使用<logo>來顯示你的網(wǎng)站logo,還有使用<toolbar>來顯示工具欄等等。我們經(jīng)常使用<p id=”container”>和<p id=”wrapper”>來組織頁面,在 HTML6 里我們希望可以直接使用象<container>和<wrapper>這樣的自定義標簽。

HTML6 代碼樣例:

<!DOCTYPE html>
 <html:html>
 <html:head>
 <html:title>A Look Into HTML6</html:title>
 <html:meta type="title" value="Page Title">
 <html:meta type="description" value="HTML example with namespaces">
 <html:link src="css/mainfile.css" title="Styles" type="text/css">
 <html:link src="js/mainfile.js" title="Script" type="text/javascript">
 </html:head>
 <html:body>
 <header>
 <logo>
 <html:media type="image" src="images/xyz.png">
 </logo>
 <nav>
 <html:a href="/img1">a1</a>
 <html:a href="/img2">a2</a>
 </nav>
 </header>
 <content>
 <article>
 <h1>Heading of main article</h1>
 <h2>Sub-heading of main article</h2>
 <p>[...]</p>
 <p>[...]</p>
 </article>
 <article>
 <h1>The concept of HTML6</h1>
 <h2>Understanding the basics</h2>
 <p>[...]</p>
 </article>
 </content>
 <footer>
 <copyright>This site is ? to Anonymous 2014</copyright>
 </footer>
 </html:body>
 </html:html>


在上面的代碼中,你也許注意到了一些奇怪的<html:x>標簽,它們是 W3C 和 HTML6 規(guī)范中在命名空間里定義的標簽。例如:<html:title>負責(zé)設(shè)定你瀏覽器的標題欄文字,<html:media>負責(zé)顯示圖片等等。用戶可以自己定義標簽以便 JavaScript 和 CSS 識別和處理,這樣頁面代碼會更易讀,語義更清晰。

HTML6 APIs

HTML6 的標簽前帶有命名空間,如:<html:html>, <html:head>等等。

1. <html:html>

<!DOCTYPE html>

 <html:html>// this is equivalent to <html> tag written in previous HTML versions

 <!-- sample of HTML document -->

 </html:html>

2. <html:head> 和 <head> 標簽一樣。

<!DOCTYPE html>

 <html:html>

 <html:head>

 <!-- Main content would come here, like the <html:title> tag -->

 </html:head>

 </html:html>

3. <html:title> 和 <title> 標簽類似。

<!DOCTYPE html>

 <html:html>

 <html:head>

 <html:title>A Look Into HTML6</html:title>

 </html:head>

 </html:html>

4. <html:meta> 和 <meta> 標簽類似,不同之處在于,在 HTML5 中你只能使用標準的元數(shù)據(jù)類型,如:”keywords”, “description”, “author”等,而在 HTML6 中你可以使用任何元數(shù)據(jù)類型。

<!DOCTYPE html>

 <html:html>

 <html:head>

 <html:title>A Look Into HTML6</html:title>

 <html:meta type="description" value="HTML example with namespaces">

 </html:head>

 </html:html>

5. <html:link> 和 HTML6 之前版本的 <link> 標簽類似。

<!DOCTYPE html>

 <html:html>

 <html:head>

 <html:title>A Look Into HTML6</html:title>

 <html:link src="js/mainfile.js" title="Script" type="text/javascript">

 </html:head>

 </html:html>

6. <html:body> 和 <body> 標簽一樣。

<!DOCTYPE html>

 <html:html>

 <html:head>

 <html:title>A Look Into HTML6</html:title>

 </html:head>

 <html:body>

 <!-- This is where your website content is placed -->

 </html:body>

 </html:html>

7. <html:a> 和 <a> 標簽類似,區(qū)別是 <html:a> 只有 “href” 一個屬性。

<!DOCTYPE html>

 <html:html>

 <html:head>

 <html:title>A Look Into HTML6</html:title>

 </html:head>

 <html:body>

 <html:a href="http://siteurl">Go to siteurl.com!</html:a>

 </html:body>

 </html:html>

8. <html:button> 和 <button> 及 <input type=”button”> 一樣。

<!DOCTYPE html>

 <html:html>

 <html:head>

 <html:title>A Look Into HTML6</html:title>

 </html:head>

 <html:body>

 <html:button>Click Here</html:button>

 </html:body>

 </html:html>

9. <html:media> 涵蓋 <img>, <video>, <embed> 等標簽的所有功能。<html:media> 的好處是你不用根據(jù)不同的媒體文件類型使用不同的標簽,媒體的類型由瀏覽器從文件內(nèi)容(類型屬性,擴展名,和MIME type)中來判斷。

<!DOCTYPE html>

 <html:html>

 <html:head>

 <html:title>A Look Into HTML6</html:title>

 </html:head>

 <html:body>

 <!-- Image would come here -->

 <html:media src="img1/logo.jpg" type="image">

 <!-- Video doesn't need a type -->

 <html:media src="videos/slide.mov">

 </html:body>

 </html:html>

標簽類型(Tag types)概述

和 HTML5 一樣, HTML6 也有兩種標簽類型:單標簽(single tag) 和雙標簽(double tag)

<html:meta type="author" content="single tag">

 <html:meta type="author" content="double tag" />

單標簽不需要結(jié)束符’/’

結(jié)語

HTML6 規(guī)范還未發(fā)布,本文原作者Oscar Godson 只是為我們提供了一個對 HTML6 規(guī)范的展望,或者說他希望 HTML6 能夠支持的一些新特性。

聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時與本網(wǎng)聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

html6的展望與代碼

html6的展望與代碼:HTML5 是 HTML 語言最受歡迎的版本之一,它支持音頻和視頻、離線存儲、移動端、和標簽屬性等等。還提供了<article>, <section>, <header>這樣的標簽來幫助開發(fā)者更好地組織頁面內(nèi)容。然而 HTML5 規(guī)范仍然沒有最后定稿,并且它并不是
推薦度:
  • 熱門焦點

最新推薦

猜你喜歡

熱門推薦

專題
Top