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