2016年2月17日 星期三

HTML 5 快速導覽 - 網頁結構

網頁設計有很多種方式,大體而言都會把網頁畫分成不同的區域,每一個區域裝各自的內容,如下圖



早期有些網頁設計師利用框架,也就是 <frame> 元素 (element) 切割區域,每個區域載入不同的 HTML 文件,後來越來越多網頁設計師使用 <div> 設定區域,利用 id 屬性 (attribute) 命名每個不同區域的 <div> 元素,然後用 CSS 設定樣式 (style) ,例如

<html>
  <head>
    <title>Old Web Structure</title>
    <style>
      #header, #nav, #main, #footer {
        color: white;
      }
      #header, #footer {
        text-align: center;
        width: 100%;
      }
      #header {
        background-color: red;
        font-size: 36px;
        font-weight: bold;
      }
      #nav {
        position: fixed;
        top: 40px;
        right: 25px;
        background-color: blue;
        width: 100px;
      }
      #main {
        width: 86%;
        background-color: gray;
        padding: 20px;
        margin: 20px;
      }
      #footer {
        background-color: green;
        font-size: 10px;
      }
    </style>
  </head>
  <body>
    <div id="header">
      header
    </div>
    <div id="nav">
      <ul>
        <li>nav 1</li>
        <li>nav 2</li>
      </ul>  
    </div>
    <div id="main">
      article
    </div>
    <div id="footer">
      <p>
        footer © 2011 
      </p>       
    </div>
  </body>
</html>

此例中利用 header 表示網頁的標題及描述, nav 表示導覽區塊, main 為主要文章區域, footer 則是置底的版權區域

現在 HTML 5 提供語意化的標籤,例如 <header> 、 <nav> 、 <section> 、 <footer> 等,直接在網頁結構中標記該區域,例如


<!DOCTYPE html>  
<html>  
  <head>  
     <title>HTML 5 DEMO</title> 
     <style>
       header, nav, section, article, footer {
         display: block;
       }
       header, nav, section, article, footer {
         color: white;
       }
       header, footer {
         text-align: center;
         width: 100%;
       }
       header {
         background-color: red;
         font-size: 36px;
         font-weight: bold;
       }
       nav {
         position: fixed;
         top: 40px;
         right: 25px;
         background-color: blue;
         width: 100px;
       }
       section {
         width: 86%;
         background-color: gray;
         padding: 20px;
         margin: 20px;
       }
       footer {
         background-color: green;
         font-size: 10px;
       }
     </style> 
  </head>  
  <body>  
    <header>  
       header  
    </header>  
    <nav>  
      <ul>
        <li>nav 1</li>
        <li>nav 2</li>
      </ul>  
    </nav>
    <section>
      <article>
        article
      </article>
    </section>      
    <footer>  
      <p>
        footer © 2011 
      </p>       
    </footer>  
  </body>  
</html>  

<header> 為 HTML 5 文件置頂的描述區域, <nav> 為導覽區塊,通常用作側邊欄, <section> 為內容區域,裡頭的段落文章再用 <article> 標記,因此一個 <section> 可以有多個 <article> , <footer> 則是置底的描述區域。

這些新的語意化標籤用作畫分網頁區域,我們稱之為區域元素 (sections) ,裡頭可包含各類群組元素 (grouping content) 、文字階層元素 (text-level semantics) 、編訂元素 (edits) 、內嵌元素 (embedded content) 、表格元素 (tabular data) 、表單元素 (forms) 、互動式元素 (interactive elements) 等。



Reference : http://pydoing.blogspot.tw/2011/12/html-5-page-structure.htm
l

沒有留言:

張貼留言