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