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