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