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