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