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