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