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