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