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