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