Use on the webTotal Use [ 5018 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/f8a55d01ccc4a438b9360218b9dd523a?family=Funky+Regular" 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/f8a55d01ccc4a438b9360218b9dd523a?family=Funky+Regular);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Funky Regular";
src: url("https://db.onlinewebfonts.com/t/f8a55d01ccc4a438b9360218b9dd523a.eot");
src: url("https://db.onlinewebfonts.com/t/f8a55d01ccc4a438b9360218b9dd523a.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/f8a55d01ccc4a438b9360218b9dd523a.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/f8a55d01ccc4a438b9360218b9dd523a.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/f8a55d01ccc4a438b9360218b9dd523a.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/f8a55d01ccc4a438b9360218b9dd523a.svg#Funky Regular")format("svg");
}
2CSS rules to specify fonts
font-family: "Funky Regular";