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