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