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