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