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