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