在线二区人妖系列_国产亚洲欧美日韩在线一区_国产一级婬片视频免费看_精品少妇一区二区三区在线

鍍金池/ 教程/ HTML/ HTML 標(biāo)簽
書單
JavaScript 動(dòng)畫
HTML
CSS Reset
屬性操作
DOM 事件
閉包
Photoshop
Atom 文本編輯器
表單操作
布局解決方案
類型系統(tǒng)
開發(fā)實(shí)踐
數(shù)據(jù)通信
變量作用域
BOM
JavaScript 程序設(shè)計(jì)
前端工程師概述
CSS
響應(yīng)式布局
表達(dá)式與運(yùn)算符
基本語法
JavaScript 介紹
版本控制
布局
調(diào)試器
背景
圖片保存
多媒體
文檔樹
列表操作
Sublime 編輯器
盒模型
常見布局樣例
類型識(shí)別
變形
數(shù)據(jù)存儲(chǔ)
選擇器
頁面架構(gòu)
開發(fā)及調(diào)試工具
頁面模塊化
節(jié)點(diǎn)操作
測量及取色
瀏覽器兼容
HTML 簡介
內(nèi)置對(duì)象
實(shí)體字符
產(chǎn)品前端架構(gòu)
協(xié)作流程
切圖
工具, 面板, 視圖
正則表達(dá)式
動(dòng)畫
語句
面向?qū)ο?/span>
HTML 語法
HTML 標(biāo)簽
技術(shù)選擇
樣式操作
圖片優(yōu)化與合并
語法
DOM 編程藝術(shù)
Canvas
接口設(shè)計(jì)
頁面優(yōu)化
文本

HTML 標(biāo)簽

HTML 標(biāo)簽

HTML5 標(biāo)簽集合

http://wiki.jikexueyuan.com/project/fend_note/images/H/html-elements.jpg" alt="" />

文檔章節(jié)

<body> 頁面內(nèi)容 <header> 文檔頭部 <nav> 導(dǎo)航 <aside> 側(cè)邊欄 <article> 定義外部內(nèi)容(如外部引用的文章) <section> 一個(gè)獨(dú)立的塊 <footer> 尾部

頁面通常結(jié)構(gòu)

http://wiki.jikexueyuan.com/project/fend_note/images/S/structure.gif" alt="Web Structure" />

文本標(biāo)簽

<!-- 默認(rèn)超鏈接  -->
<a  title="Sample Link">Sample</a>
<!-- 當(dāng)前窗口顯示 -->
<a  title="Sample Link" target="_self">Sample</a>
<!-- 新窗口顯示 -->
<a  title="Sample Link" target="_blank">Sample</a>
<!-- iframe 中打開鏈接 -->
<a  title="Sample Link" target="iframe-name">Sample</a>
<iframe name="iframe-name" frameborder="0"></iframe>

<!-- 頁面中的錨點(diǎn) -->
<a href="#achor">Achor Point</a>
<section id="achor">Achor Content</section>

<!-- 郵箱及電話需系統(tǒng)支持 -->
<a href="mailto:sample-address@me.com" title="Email">Contact Us</a>
<!-- 多個(gè)郵箱地址 -->
<a href="mailto:sample-address@me.com, sample-address0@me.com" title="Email">Contact Us</a>
<!-- 添加抄送,主題和內(nèi)容 -->
<a href="mailto:sample-address@me.com?cc=admin@me.com&subject=Help&body=sample-body-text" title="Email">Contact Us</a>

<!-- 電話示例 -->
<a href="tel:99999999" title="Phone">Ring Us</a>

組合內(nèi)容標(biāo)簽

  • <div>
  • <p>
  • <ol>
  • <ul>
  • <dl>
  • <pre>
  • <blockquote>

文檔章節(jié)

<body> 頁面內(nèi)容 <header> 文檔頭部 <nav> 導(dǎo)航 <aside> 側(cè)邊欄 <article> 定義外部內(nèi)容(如外部引用的文章) <section> 一個(gè)獨(dú)立的塊 <footer> 尾部

引用

  • <cite> 引用作品的名字、作者的名字等
  • <q> 引用一小段文字(大段文字引用用<blockquote>
  • <blockquote> 引用大塊文字
  • <pre> 保存格式化的內(nèi)容(其空格、換行等格式不會(huì)丟失)
<pre>
  <code>
    int main(void) {
      printf('Hello, world!');
      return 0;
  }
</code>
</pre>

代碼

<code> 引用代碼

格式化

<b> 加粗 <i> 斜體

強(qiáng)調(diào)

<em> 斜體。著重于強(qiáng)調(diào)內(nèi)容,會(huì)改變語義的強(qiáng)調(diào) <strong> 粗體。著重于強(qiáng)調(diào)內(nèi)容的重要性

換行

<br> 換行

列表

無序列表

<ul>
  <li>標(biāo)題</li>
  <li>結(jié)論</li>
</ul>

有序列表

<ol>
  <li>第一</li>
  <li>第二</li>
</ol>

自定義列表

<dl>
  <dt>作者</dt>
  <dd>愛因斯坦</dd>
  <dt>作品</dt>
  <dd>《相對(duì)論》</dd>
  <dd>《時(shí)間與空間》</dd>
</dl>

一個(gè)<dt>可以對(duì)應(yīng)多個(gè)<dd>

NOTE: <dl> 為自定義列表,其中包含一個(gè)或多個(gè) <dt> 及 一個(gè)或多個(gè) <dd>,并且dtdl列表會(huì)有縮進(jìn)的效果。<pre> 會(huì)保留換行和空格,通常與 <code> 一同使用。

<pre>
  <code>
    int main(void) {
      printf('Hello, world!');
      return 0;
    }
  </code>
</pre>

<blockquote> 擁有 cite 屬性,它包含引用文本的出處,示例如下所示:

<blockquote cite="http://example.com/facts">
  <p>Sample Quote...</p>
</blockquote>

嵌入

<iframe src=""></iframe> 頁面操作可以不影響到iframe的內(nèi)容

<!--object embed通常用來嵌入外部資源 -->
<object type="application/x-shockwave-player">
  <param name="movie" value="book.pdf">
</object>

<!--視頻 track可以引入字幕 autoplay可以使視頻加載后自動(dòng)播放,loop可以使其循環(huán)播放 -->
<video autoplay loop controls="controls" poster="poster.jpg">
  <source src="movie.mp4" type="video/mp4">
  <source src="movie.webm" type="video/webm">
  <source src="movie.ogg" type="video/ogg">
  <track kind="subtitles" src="video.vtt" srclang="cn" label="cn">
</video>

資源標(biāo)簽

圖標(biāo)簽

canvas 基于像素,性能要求比較高,可用于實(shí)時(shí)數(shù)據(jù)展示。svg 為矢量圖形圖像。

熱點(diǎn)區(qū)域標(biāo)簽

img中套用map以及area可以實(shí)現(xiàn)點(diǎn)擊某部分圖片觸發(fā)一個(gè)鏈接,點(diǎn)擊另一部分觸發(fā)另一個(gè)鏈接

<img src="mama.jpg" width=100 height=100 usemap="#map" />
<map name="map">
    <area shap="rect" coords="0,0,50,50" href="" alt="">
    <area shap="circle" coords="75,75,25" href="" alt="">
</map>

表格

表格代碼示例

<table>
  <caption>table title and/or explanatory text</caption>
  <thead>
    <tr>
      <th>header</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>data</td>
    </tr>
  </tbody>
</table>

使用 colspan=val 進(jìn)行跨列,使用 rowspan=val 進(jìn)行跨行。

表單

<form action="WebCreation_submit" method="get" accept-charset="utf-8">
  <fieldset>
    <legend>title or explanatory caption</legend>
    <!-- 第一種添加標(biāo)簽的方法 -->
    <label><input type="text/submit/hidden/button/etc" name="" value=""></label>
    <!-- 第二種添加標(biāo)簽的方法 -->
    <label for="input-id">Sample Label</label>
    <input type="text" id="input-id">
  </fieldset>
  <fieldset>
    <legend>title or explanatory caption</legend>
    <!-- 只讀文本框 -->
    <input type="text" readonly>
    <!-- 隱藏文本框,可提交影藏?cái)?shù)據(jù) -->
    <input type="text" name="hidden-info" value="hiden-info-value" hidden>
  </fieldset>
  <button type="submit">Submit</button>
  <button type="reset">Reset</button>
</form>

使用fieldset可用于對(duì)表單進(jìn)行分區(qū)

表單中的其他控件類型:

  • textarea (文本框)
  • selectoption (下拉菜單可多選)
input 類型支持值列表
Value Description
button Defines a clickable button (mostly used with a JavaScript to activate a script)
checkbox Defines a checkbox
http://wiki.jikexueyuan.com/project/fend_note/images/H/html5_badge20.png">color Defines a color picker
http://wiki.jikexueyuan.com/project/fend_note/images/H/html5_badge20.png">date Defines a date control (year, month and day (no time))
http://wiki.jikexueyuan.com/project/fend_note/images/H/html5_badge20.png">datetime The input type datetime has been removed from the HTML standard. Use datetime-local instead.
http://wiki.jikexueyuan.com/project/fend_note/images/H/html5_badge20.png">datetime-local Defines a date and time control (year, month, day, hour, minute, second, and fraction of a second (no time zone)
http://wiki.jikexueyuan.com/project/fend_note/images/H/html5_badge20.png">email Defines a field for an e-mail address
file Defines a file-select field and a "Browse..." button (for file uploads)
hidden Defines a hidden input field
image Defines an image as the submit button
http://wiki.jikexueyuan.com/project/fend_note/images/H/html5_badge20.png">month Defines a month and year control (no time zone)
http://wiki.jikexueyuan.com/project/fend_note/images/H/html5_badge20.png">number Defines a field for entering a number
password Defines a password field (characters are masked)
radio Defines a radio button
http://wiki.jikexueyuan.com/project/fend_note/images/H/html5_badge20.png">range Defines a control for entering a number whose exact value is not important (like a slider control)
reset Defines a reset button (resets all form values to default values)
http://wiki.jikexueyuan.com/project/fend_note/images/H/html5_badge20.png">search Defines a text field for entering a search string
submit Defines a submit button
http://wiki.jikexueyuan.com/project/fend_note/images/H/html5_badge20.png">tel Defines a field for entering a telephone number
text Default. Defines a single-line text field (default width is 20 characters)
http://wiki.jikexueyuan.com/project/fend_note/images/H/html5_badge20.png">time Defines a control for entering a time (no time zone)
http://wiki.jikexueyuan.com/project/fend_note/images/H/html5_badge20.png">url Defines a field for entering a URL
http://wiki.jikexueyuan.com/project/fend_note/images/H/html5_badge20.png">week Defines a week and year control (no time zone)

語義化

語義化(Semantic Tag)是指用合適的標(biāo)簽標(biāo)識(shí)適當(dāng)?shù)膬?nèi)容,它可以起到搜索引擎優(yōu)化(Search Engine Optimization),提高可訪問性(例如盲人使用的屏幕閱讀器),與此同時(shí)還可以提高代碼的可讀性。簡而言之也就是在正確的地方使用正確的標(biāo)簽

上一篇:頁面模塊化下一篇:瀏覽器兼容