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