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