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