Posted in icons
795
12:21 am, November 17, 2021
 

how to embed google fonts icons

For some reason when i go to embed a google font icon, they dont seems to have any obvious way to actually use it, i can find the icons ok here. But then when i go and use it it links to a how to embed page, which just tells me how to embed a google font not the actual icon. Seems strange...

So i go here for the icons. And i find the icon i want to use. 

Ok so i click on the "instructions" link which brings me here. Which just tells me i can embed google fonts. Great, so i have to google "how to embed google fonts icons".

So how do i actually embed the google icons?

(i almost gave up and went back to font awesome, but ill keep trying...)

Why do they not just add this to the icons page, maybe its there and i just cant see it.

Include this in your header.

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

Then you can copy the embed code from the fonts site.

(why dont they just say that! /rant) (i know they are free i should not be complaining)

HTML

<span class="material-icons-outlined">
favorite
</span>

Nope, still not working. CMon, is it that hard?

So basically you cant use the embed code provided, as it just displays the word favourite, or the selected icon name. Rather you have to use the font awesome embed way, and use a i tag with the class material-icons on it and then you can add the word of the icon. 

Have fun with Material Icons, now that you know how to actually access them!

HTML

<!-- the embed code they provide does not work -->
<span class="material-icons-outlined">
favorite
</span>

<!-- you have to add it a similar way to font awesome icons -->
<i class="material-icons">favorite</i>
<i class="material-icons" style="font-size:48px;">favorite</i>
<i class="material-icons" style="font-size:60px;color:red;">favorite</i>

Scripts

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

View Statistics
This Week
262
This Month
1198
This Year
4724

No Items Found.

Add Comment
Type in a Nick Name here
 
Other Items in icons
Search Code
Search Code by entering your search text above.
Welcome

This is my test area for webdev. I keep a collection of code here, mostly for my reference. Also if i find a good link, i usually add it here and then forget about it. more...

You could also follow me on twitter. I have a couple of youtube channels if you want to see some video related content. RuneScape 3, Minecraft and also a coding channel here Web Dev.

If you found something useful or like my work, you can buy me a coffee here. Mmm Coffee. ☕

❤️👩‍💻🎮

🪦 2000 - 16 Oct 2022 - Boots
Random Quote
When I realized that, no individual step is hard in any process. Building this airport I'm standing in right now started with a guy writing the architectural plans on paper. That's not hard for him to do. Then laying the first beam isn't had. The whole thing is really hard. So, just take each step kind of piece by piece and when I was able to do that and stop trying to chase this prize and started putting in the work, things just started coming together.
Unknown
Random CSS Property

content-visibility

The content-visibility CSS property controls whether or not an element renders its contents at all, along with forcing a strong set of containments, allowing user agents to potentially omit large swathes of layout and rendering work until it becomes needed. Basically it enables the user agent to skip an element's rendering work (including layout and painting) until it is needed — which makes the initial page load much faster.
content-visibility css reference