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