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