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