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