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