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