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