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