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