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