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