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