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