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