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