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