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