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