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