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