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