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