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