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