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