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