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