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