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