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