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