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