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