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