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