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