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