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