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