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