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