建立一個圖示

以下是如何從材料設計圖示建立圖示的指南:

  1. 在你的 index.html 中載入來自 Google CDN 的圖示字型:

    <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
    

    或者,你可以在 styles.css 中匯入它:

    @import url('https://fonts.googleapis.com/icon?family=Material+Icons');
    
  2. 使用方法如下:

    <md-icon>menu</md-icon>
    

你完成了!