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