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