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