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