iT邦幫忙

1

Day 1 (html)

  • 分享至 

  • xImage
  •  

1.版本

但是遇到舊的也不要更改,因為可能別人版本還沒這麼新

<!DOCTYPE html>
<!-- 版本5之後的寫法 -->

2.查詢資料

標籤/屬性用法,使用搜尋,並且可以自己嘗試看看
https://www.w3schools.com/tags/
最下方Default CSS Settings為該標籤/屬性的原始設定


3.外掛

  1. Chinese (Traditional) Language Pack for Visual Studio Code (中文化)
  2. Bracket Pair Colorizer (區分寫程式的顏色括號)
  3. Auto Rename Tag (自動調整標籤)
  4. Live server (預覽網頁,保存的時候便自動刷新瀏覽器頁面,
    記得設定外掛Auto Rename Tag,選右下角齒輪,找開啟網頁的辦法)
  5. indent rainbow (查看標籤頭尾)
  6. live sass compiler (使用scss時記得打開watch)

Live server
https://ithelp.ithome.com.tw/upload/images/20210522/20137684NHkhq3Ub4y.png

live sass compiler
https://ithelp.ithome.com.tw/upload/images/20220207/20137684avEWBqA3nD.jpg


4.vscode設定

  1. 檔案 → 喜好設定 → 設定 → 文字編輯器 → 字型 → Font Size (字大小) 經常使用附近
  2. 如果要方便也可以" Ctrl + "但 會全部螢幕放大
  3. 檔案 → 喜好設定 → 設定 → 工作區→(工作台) → 外觀 → color Theme (版面顏色)
  4. 檔案 → 喜好設定 → 設定 → 工作區→(工作台) → 外觀 → Tree:Indent (左排樹狀圖空隙)
  5. 檔案 → 喜好設定 → 設定 → 延伸模組 (看安裝過的模組)

設定tab
https://ithelp.ithome.com.tw/upload/images/20220630/20137684FCHZz5pdyG.png
https://ithelp.ithome.com.tw/upload/images/20220630/20137684b3yJl8qlPe.png
https://ithelp.ithome.com.tw/upload/images/20220630/20137684Mdciv8W3dA.png


5.html檔案內+!=預設格式


6.html

是給人看的內容,放在 body 給人看

<body>
<!-- 標籤+屬性=元素 -->
<p id="apple">蘋果</p>
</body>

7.CSS

CSS是樣式,放在 head 給瀏覽器看即可

<head>
<style></style>
<head>
<style>
       /*  選p標籤 >>html  */
        p{
            color: red;
            background-color: black;  
        }
        
      /* 選id(記得#,否則會變成標籤)>>CSS */
        #g{
            color: green;
        }
</style>

8.JavaScript

寫在在下面,也是放在 body ,要加 script

<body>
    <script>
        function showMag()
        {
            alert("跳出視窗");
        }

    </script>
</body>

9.有些東西要配合CSS或JavaScript才有作用

如前述CSS內選擇html屬性


圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言