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