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