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