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