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