1. 程式人生 > >HTML第一章總結

HTML第一章總結

第一章總結

HTML那些事兒:Web Sever, Web Browser,HTML files

  1. 如果你要做網頁,那你寫了HTML文件就要上傳到 Web Server 上
  2. 在客戶使用 Web Browser 的時候,當你點選一個連結,Web Browser請求得到 Web Server 的資訊,然後 Web Server 返回 Browser 資訊
  3. HTML files告訴 Browser 如何呈現資訊,從而列印在螢幕上。

如何建立 HTML files?

所有的 HTML files 都是 text files,而且都是 plain text 。所以你需要一個能夠建立 plain text 的軟體。

HTML的知識:

職責:HTML 是用於 tell to Browser the **structure **of content of the page
結構

  1. HTML 開頭應該有 用於告訴 Browser 這是 HTML 寫的
  2. 寫 HTML 的時候應該將 和 分開
  3. Element = Opening Tag + Content + Closing Tag,但是圖片是一個特例:<img src ="drinks.gif">

CSS的知識

職責:CSS 用於 tell the Browser how your elements in your page look, 簡而言之,就是 presentation of the elements


結構

    1. 當使用 CSS 的時候,將其放在 HTML 中的<style>元素中去,並且<style>必須be inside of <head>
    2. 在<style>的Opening Tag中有個引數為 type,應賦值為"text/CSS",用於 provide additional information
    3. { }前面的名稱就是用於<body>中的作用範圍。

需要注意的其他 Points
* 標題有<h1>~<h6>總共6個等級
* 提供 information 的是head
* 在頁面上顯示的是 body