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