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