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