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