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