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