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