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