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