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