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