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