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