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