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