Use on the webTotal Use [ 5260 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/546255c949b2cf7302c71e3bc474cfe8?family=Simple+Pixels+%28Latin+%2B+Cyrillic+%2B+Katakana%29+Regular" 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/546255c949b2cf7302c71e3bc474cfe8?family=Simple+Pixels+%28Latin+%2B+Cyrillic+%2B+Katakana%29+Regular);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Simple Pixels (Latin + Cyrillic + Katakana) Regular";
src: url("https://db.onlinewebfonts.com/t/546255c949b2cf7302c71e3bc474cfe8.eot");
src: url("https://db.onlinewebfonts.com/t/546255c949b2cf7302c71e3bc474cfe8.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/546255c949b2cf7302c71e3bc474cfe8.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/546255c949b2cf7302c71e3bc474cfe8.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/546255c949b2cf7302c71e3bc474cfe8.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/546255c949b2cf7302c71e3bc474cfe8.svg#Simple Pixels (Latin + Cyrillic + Katakana) Regular")format("svg");
}
2CSS rules to specify fonts
font-family: "Simple Pixels (Latin + Cyrillic + Katakana) Regular";