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