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