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