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