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