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