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