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