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