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