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