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