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