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