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