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