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