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