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