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