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