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