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