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