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