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