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