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