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