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