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