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