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