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