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