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