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