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