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