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