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