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