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