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