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