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