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