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