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