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