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