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