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