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