Title1

Title2

Title3

5-5 HTML常用標籤

  1. 標題標籤:<h1>~<h6>, 每個頁面最好只有一個<h1>
  2. 段落標籤:<p>...</p>
  3. 區塊元素與行內元素:一般HTML元素依顯示模式,可區分二種,區塊元素(blcck level)、行內元素(inline)
    inline不允許使用 CSS 設定 width、height(可以使用 line-height改變行高),可用 margin、padding,但只會改變左右邊距、填充,像<span>、<a>都是行內元素
  4. 區塊元素會從新行開始,寬度佔滿整個容器, <div>
  5. 換行標籤:<br> => javascript換行 「\n」
  6. 有序列表:<ol><li>, 屬性 value可以指定起始值
    list-style-type: https://developer.mozilla.org/en-US/docs/Web/CSS/list-style-type
                               https://ithelp.ithome.com.tw/articles/10251436
  7. 無序列表:<ul><li>
  8. <div>、<span>、<a>:href target
  9. <img>:src、alt、title