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