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