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