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