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