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