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