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