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