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