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