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