Posted in icons
9952
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
202
This Month
769
This Year
1243

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...

Subscribe to weekly updates about things i have added to the site or thought interesting during the last week.

You could also follow me on twitter or not... does anyone even use twitter anymore?

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


seren spirit :(
Random CSS Property

repeating-radial-gradient()

The repeating-radial-gradient() CSS function creates an image consisting of repeating gradients that radiate from an origin. It is similar to radial-gradient() and takes the same arguments, but it repeats the color stops infinitely in all directions so as to cover its entire container, similar to repeating-linear-gradient(). The function's result is an object of the <gradient> data type, which is a special kind of <image>.
repeating-radial-gradient() css reference