Skip to content

Adding a new icon

We used Google Material Rounded Icons in this theme.

Adding a Regular Icon:

  1. Visit the Google Material Icons website at https://fonts.google.com/icons?icon.style=Rounded and ensure you select the rounded style icons.
  2. Choose your desired icon and click the “Copy Code” button.
  3. Paste the copied code into your HTML file.

How to change logo

Example Code:

<i class="material-symbols-rounded">play_arrow</i>

Changing the HTML Tag (Optional):

  • While the text suggests changing the <span> tag to an <i> tag for consistency, both are generally valid for displaying icons. We used i tag for icons in this theme

Adding a Filled Icon:

  1. To display a filled icon, simply add the class icon-filled in your copied code.

Example Code:

<i class="material-symbols-rounded icon-filled">play_arrow</i>