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