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