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