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