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