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