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