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