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