Use on the webTotal Use [ 3428 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/72ad86c31e200685cd9c898b58c032df?family=Frogii%27s+Froggy" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/72ad86c31e200685cd9c898b58c032df?family=Frogii%27s+Froggy);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Frogii's Froggy";
src: url("https://db.onlinewebfonts.com/t/72ad86c31e200685cd9c898b58c032df.eot");
src: url("https://db.onlinewebfonts.com/t/72ad86c31e200685cd9c898b58c032df.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/72ad86c31e200685cd9c898b58c032df.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/72ad86c31e200685cd9c898b58c032df.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/72ad86c31e200685cd9c898b58c032df.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/72ad86c31e200685cd9c898b58c032df.svg#Frogii's Froggy")format("svg");
}
2CSS rules to specify fonts
font-family: "Frogii's Froggy";