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