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