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