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