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