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