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