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