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