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