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