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