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