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