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