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