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