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