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