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