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