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