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