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