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