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