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