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