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