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