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