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