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