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