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