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