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