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