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