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