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